Skip to content

re-enable Nim 2.0 in CI #95

re-enable Nim 2.0 in CI

re-enable Nim 2.0 in CI #95

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
nim: [stable, 1.6.20]
steps:
- uses: actions/checkout@v2
- uses: iffy/install-nim@v5
with:
version: ${{ matrix.nim }}
- name: Build
run: nimble install -y
- name: Test
run: nimble test -y