Skip to content

Update links (#5)

Update links (#5) #2

Workflow file for this run

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