Skip to content

Commit

Permalink
Run tests on multiple Nim versions
Browse files Browse the repository at this point in the history
  • Loading branch information
zedeus committed Oct 31, 2023
1 parent b8103cf commit 60a8256
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ on:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
nim:
- "1.6.10"
- "1.6.x"
- "2.0.x"
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -28,7 +34,8 @@ jobs:
cache: "pip"
- uses: jiro4989/setup-nim-action@v1
with:
nim-version: "1.x"
nim-version: ${{ matrix.nim }}
repo-token: ${{ secrets.GITHUB_TOKEN }}
- run: nimble build -d:release -Y
- run: pip install seleniumbase
- run: seleniumbase install chromedriver
Expand Down

0 comments on commit 60a8256

Please sign in to comment.