Mark Spanbroek 698d0f77d6 Remove compatibility with Nim versions < 1.6
The `check eventually` template is incompatible
with Nim 1.2. It uses `await` in a template,
which is not possible until after 1.2.

https://github.com/nim-lang/Nim/pull/12085#issuecomment-526210003
2023-06-22 10:12:43 +02:00

19 lines
361 B
YAML

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