19 lines
360 B
YAML
Raw Normal View History

2021-01-11 12:02:40 +01:00
name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
2021-07-07 10:36:20 +02:00
nim: [stable, 1.2.6]
2021-01-11 12:02:40 +01:00
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- uses: iffy/install-nim@v3
2021-07-07 10:36:20 +02:00
with:
version: ${{ matrix.nim }}
2021-01-11 12:02:40 +01:00
- name: Test
run: nimble test -y