Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,18 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
nim:
- stable

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The fix hasn't merged in stable yet, so might drop this matrix for now

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it merged now?

- devel --latest

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

devel is supposed to be good enough of which the binary is built everyday. devel --latest might be slower since it builds from source.


runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- uses: jiro4989/setup-nim-action@v1
with:
nim-version: ${{ matrix.nim }}
repo-token: ${{ secrets.GITHUB_TOKEN }}
- run: nimble test -y
- run: nimble test --gc:orc -y
- run: nim js -r tests/all.nim
Expand Down