mirror of
https://github.com/logos-storage/nim-groth16.git
synced 2026-02-11 01:03:06 +00:00
* fix(nimble): ensure constantine works on windows * fix(ci): run with nim 2.2.6 on windows, mac and linux
25 lines
554 B
YAML
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
|