mirror of
https://github.com/logos-storage/nim-groth16.git
synced 2026-01-05 15:13:13 +00:00
chore: add CI
This commit is contained in:
parent
d087f450b5
commit
b3d5adf106
21
.github/workflows/ci.yml
vendored
Normal file
21
.github/workflows/ci.yml
vendored
Normal 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
|
||||
Loading…
x
Reference in New Issue
Block a user