-
Notifications
You must be signed in to change notification settings - Fork 56
66 lines (58 loc) · 1.66 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: OpenPassport CI/CD
on:
push:
branches:
- dev
- main
paths:
- 'circuits/**'
- 'common/**'
pull_request:
branches:
- dev
- main
paths:
- 'circuits/**'
- 'common/**'
jobs:
run_circuit_tests:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
environment: development
steps:
- uses: actions/checkout@v3
# Circom installation from https://github.com/erhant/circomkit/blob/main/.github/workflows/tests.yml
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install --yes \
build-essential \
libgmp-dev \
libsodium-dev \
nasm \
nlohmann-json3-dev
- name: Set Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
- name: Download Circom Binary v2.1.8
run: |
wget -qO /home/runner/work/circom https://github.com/iden3/circom/releases/download/v2.1.8/circom-linux-amd64
chmod +x /home/runner/work/circom
sudo mv /home/runner/work/circom /bin/circom
- name: Print Circom version
run: circom --version
- name: Install Yarn dependencies
working-directory: ./circuits
run: yarn install-circuits --immutable
- name: Run lint
working-directory: ./circuits
run: yarn lint
- name: Run Tests (Circuits)
working-directory: ./circuits
run: yarn test
- name: Run Tests (Common)
working-directory: ./common
run: yarn test