Skip to content

Commit

Permalink
Merge pull request #33 from Clonkk/Clonkk-patch-1
Browse files Browse the repository at this point in the history
Update ci.yml
  • Loading branch information
Clonkk authored Aug 19, 2024
2 parents 2532cf4 + 0201b96 commit f0dbd88
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,27 @@ on:
- master

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
nim:
- '1.6.x'
- '2.0.x'
- 'stable'
os:
- ubuntu-latest
- windows-latest
- macOS-latest
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: "install_nim"
id: install_nim
uses: iffy/install-nim@v3
- name: Setup nim
uses: jiro4989/setup-nim-action@v2
with:
nim-version: ${{ matrix.nim }}
repo-token: ${{ secrets.GITHUB_TOKEN }}
- run: nimble install -y
- run: testament p "tests/t*.nim"
- run: nimble test
Expand Down

0 comments on commit f0dbd88

Please sign in to comment.