This commit is contained in:
Mark Spanbroek 2021-11-25 09:33:40 +01:00
parent 8184529abd
commit ac257548ea
1 changed files with 19 additions and 0 deletions

19
.github/workflows/ci.yml vendored Normal file
View File

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