Update nimcso.nim #33
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Windows Tests | |
on: | |
push: | |
paths: | |
- 'tests/**' | |
- 'src/**' | |
- '.github/workflows/testingOnPush_Windows.yaml' | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Nim | |
uses: jiro4989/setup-nim-action@v1 | |
with: | |
nim-version: '2.0.2' | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install nimCSO (and dependencies) | |
run: nimble install -y | |
- name: Compile minCSO | |
run: nim c -d:release src/nimcso | |
- name: Runtime all tests under release mode | |
run: nim c -r -f -d:release -d:configPath=tests/config.yaml tests/runAll | |
- name: Runtime all tests under danger mode | |
run: nim c -r -f -d:danger -d:configPath=tests/config.yaml tests/runAll |