mirror of
https://github.com/logos-storage/nim-circom-compat.git
synced 2026-01-02 21:53:08 +00:00
31 lines
528 B
YAML
31 lines
528 B
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
nim: [1.6.18, 1.4.8, 1.2.18]
|
|
toolchain:
|
|
- stable
|
|
# - beta
|
|
# - nightly
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: 'true'
|
|
|
|
- name: Install Nim
|
|
uses: asdf-vm/actions/install@v3
|
|
with:
|
|
tool_versions: |
|
|
nim ${{ matrix.nim }}
|
|
|
|
- name: Build
|
|
run: nimble install -y
|
|
- name: Test
|
|
run: nimble test -y
|