Update links (#5) #2
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: Test | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [windows-latest, ubuntu-latest, macOS-latest] | |
nim: [stable, devel] | |
exclude: | |
# only testing stable on Windows until choosenim supports x64 | |
- os: windows-latest | |
nim: devel | |
name: Nim ${{ matrix.nim }} (${{ matrix.os }}) | |
steps: | |
- uses: actions/checkout@master | |
- name: Install Nim | |
shell: pwsh | |
run: ./.github/scripts/install-nim.ps1 ${{ matrix.nim }} | |
- name: Install dependencies | |
run: nimble install -y | |
- name: Run tests | |
run: nimble test |