markspanbroek 1aa85c3ad8
fix(nimble): ensure that constantine works in windows (#2)
* fix(nimble): ensure constantine works on windows

* fix(ci): run with nim 2.2.6 on windows, mac and linux
2025-12-17 16:32:56 +01:00

25 lines
554 B
YAML

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
nim: [2.2.6]
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Install Nim
uses: jiro4989/setup-nim-action@v2
with:
nim-version: ${{ matrix.nim }}
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Install dependencies
run: nimble install -d -y
- name: Test
run: nimble test -y
- name: Build binary
run: nimble build -y