Add continous integration through Github actions

This commit is contained in:
Mark Spanbroek 2023-10-24 14:25:21 +02:00 committed by markspanbroek
parent 1d9d0d1f54
commit 331a68e4bd

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: [1.6.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