adding github ci

This commit is contained in:
Dmitriy Ryajov 2024-01-19 14:35:51 -06:00
parent 35253db96b
commit d24a0d5747
No known key found for this signature in database
GPG Key ID: DA8C680CE7C657A4

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.6.18, 1.4.8, 1.2.18]
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