2025-12-11 11:40:23 +01:00

23 lines
535 B
YAML

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
nim: [2.2.4]
# cmake too new on newer macos, leveldb build breaks
os: [ubuntu-latest, macOS-14, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: jiro4989/setup-nim-action@v2
with:
nim-version: ${{matrix.nim}}
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Build
run: nimble install -y
- name: Test
run: nimble test -y