mirror of
https://github.com/logos-storage/nim-groth16.git
synced 2026-01-02 21:53:09 +00:00
22 lines
408 B
YAML
22 lines
408 B
YAML
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
|