chore: add CI

This commit is contained in:
Mark Spanbroek 2025-07-02 15:21:50 +02:00
parent d087f450b5
commit b3d5adf106

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

@ -0,0 +1,21 @@
name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
nim: [2.2.4]
steps:
- uses: actions/checkout@v2
- uses: iffy/install-nim@v5
with:
version: ${{ matrix.nim }}
- name: Install dependencies
run: nimble install -d -y
- name: Test
run: nimble test -y
- name: Build binary
run: nimble build -y