Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add latest devel version of Nim to GitHub workflows #62

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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

- 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