forked from zksync-association/zk-governance
-
Notifications
You must be signed in to change notification settings - Fork 0
93 lines (78 loc) · 2.23 KB
/
ci.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
name: L2 contracts ci
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
env:
FOUNDRY_PROFILE: ci
jobs:
build:
defaults:
run:
working-directory: ./l2-contracts
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
fetch-depth: 1
- name: Install Foundry
uses: dutterbutter/foundry-zksync-toolchain@v1
- name: Install dependencies
run: |
forge install --no-commit
npm install
- name: Build contracts
run: forge build --zksync
test:
defaults:
run:
working-directory: ./l2-contracts
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
fetch-depth: 1
- name: Install Foundry
uses: dutterbutter/foundry-zksync-toolchain@v1
- name: Install dependencies
run: forge install --no-commit
- name: Run forge tests
run: |
# Run forge tests with lower fuzz runs for speed, only in our test directory
forge test --match-path "test/*.t.sol" --no-match-path "test/*.integration.t.sol" --zksync -vv
lint:
defaults:
run:
shell: bash
working-directory: ./l2-contracts
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
fetch-depth: 1
- name: Install Foundry
uses: dutterbutter/foundry-zksync-toolchain@v1
- name: Install dependencies
run: |
git config --global url."https://github.com/".insteadOf "[email protected]:"
forge install --no-commit --shallow
npm install
- name: Install scopelint
uses: engineerd/[email protected]
with:
name: scopelint
repo: ScopeLift/scopelint
fromGitHubReleases: true
version: latest
pathInArchive: scopelint-x86_64-linux/scopelint
urlTemplate: https://github.com/ScopeLift/scopelint/releases/download/{{version}}/scopelint-x86_64-linux.tar.xz
token: ${{ secrets.GITHUB_TOKEN }}
- name: Check formatting
run: |
scopelint --version
scopelint check