-
Notifications
You must be signed in to change notification settings - Fork 36
54 lines (51 loc) · 1.35 KB
/
test.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
name: Run tests
on:
push:
branches: [ main, beta ]
workflow_dispatch:
pull_request:
branches: [main, beta ]
types: [ opened, reopened, synchronize ]
permissions:
contents: read # for checkout
jobs:
eth-based-chain-test:
name: ETH-based Chain Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Go
uses: actions/[email protected]
- name: Install dependencies
run: go mod download
- name: Run local-setup
run: |
git clone https://github.com/matter-labs/local-setup.git
pushd local-setup
./start-zk-chains.sh
popd
- name: Run tests
run: make run-tests-on-eth-based-chain
non-eth-based-chain-test:
name: Non-ETH-based Chain Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Go
uses: actions/[email protected]
- name: Install dependencies
run: go mod download
- name: Run local-setup
run: |
git clone https://github.com/matter-labs/local-setup.git
pushd local-setup
./start-zk-chains.sh
popd
- name: Run tests
run: make run-tests-on-non-eth-based-chain