generated from exp-table/nplate
-
Notifications
You must be signed in to change notification settings - Fork 2
53 lines (42 loc) · 1006 Bytes
/
e2e.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
name: End to end 🎉
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install Nargo
uses: noir-lang/noirup@v0.1.3
with:
toolchain: v0.25.0
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Install node
uses: actions/setup-node@v3
with:
node-version: 20.14.0
- name: Install Dependencies
run: yarn
- name: Generate input data
run: yarn build --signers 8 --threshold 4
- name: Generate Noir Proof
run: |
cd circuits && nargo prove
- name: Run Forge build
run: |
forge install
id: build
- name: Run Forge tests
run: |
forge test -vvv
id: test