-
Notifications
You must be signed in to change notification settings - Fork 35
242 lines (199 loc) · 6 KB
/
contracts-tests.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
name: Contracts Tests
# This workflow:
# - Runs the Foundry tests
# - Checks for console imports in the contracts
# - Runs the Hardhat tests
# - Generates a coverage report (currently disabled)
defaults:
run:
working-directory: contracts
env:
FOUNDRY_PROFILE: ci
FOUNDRY_VERSION: nightly
CI: true
FORCE_COLOR: true
MAINNET_RPC_URL: ${{ secrets.MAINNET_RPC_URL }}
on:
push:
branches: [main, dev]
paths:
- ".github/workflows/contracts-tests.yml"
- "contracts/**"
pull_request:
paths:
- ".github/workflows/contracts-tests.yml"
- "contracts/**"
jobs:
test-foundry:
name: Foundry tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: ${{ env.FOUNDRY_VERSION }}
- name: Run Forge build
run: |
forge --version
forge build --sizes --skip test --skip scripts
- name: Run Forge tests local
run: |
forge test -vvv --no-match-contract Mainnet
- name: Run Forge tests mainnet
run: |
forge test -vvv --match-contract Mainnet
test-e2e:
name: Foundry "E2E" tests
runs-on: ubuntu-latest
env:
SALT: Liquity2-E2E
FORK_URL: ${{ secrets.MAINNET_RPC_URL }}
FORK_CHAIN_ID: 1
FORK_BLOCK_NUMBER: 21571000
ETHERSCAN_API_KEY: ${{ secrets.ETHERSCAN_API_KEY }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install pnpm
uses: pnpm/[email protected]
with:
version: 8
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version-file: ".node-version"
cache: "pnpm"
cache-dependency-path: "pnpm-lock.yaml"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: ${{ env.FOUNDRY_VERSION }}
- name: Fork mainnet
run: ./fork start && sleep 5
- name: Deploy BOLD
run: ./fork deploy --mode bold-only
- name: Deploy everything else
run: ./fork deploy --mode use-existing-bold
- name: Run E2E tests
run: ./fork e2e -vvv
console-logs:
name: Console imports check
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Check console imports
working-directory: contracts
run: >-
! grep -R console src | grep import | grep -v "://" | grep -v TestContracts | grep -v "/test/" | grep -v ExternalContracts | grep -v "\.t\.sol" | grep -v "\.s\.sol"
test-hardhat:
if: false
name: Hardhat tests
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install pnpm
uses: pnpm/[email protected]
with:
version: 8
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version-file: ".node-version"
cache: "pnpm"
cache-dependency-path: "pnpm-lock.yaml"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: ${{ env.FOUNDRY_VERSION }}
- name: Test contracts
run: pnpm test
env:
NODE_OPTIONS: --max-old-space-size=4096
coverage:
name: Coverage
runs-on: ubuntu-latest
continue-on-error: true
steps:
- name: Git checkout
uses: actions/checkout@v4
with:
submodules: recursive
# Foundry
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: ${{ env.FOUNDRY_VERSION }}
- name: Run Forge build
run: |
forge --version
forge build
- name: Run Forge coverage
run: |
forge coverage --report lcov --report-file lcov_foundry.info
- name: Install lcov
run: sudo apt-get -y install lcov
# Hardhat
# - name: Install pnpm
# uses: pnpm/[email protected]
# with:
# version: 8
# - name: Install Node.js
# uses: actions/setup-node@v4
# with:
# node-version-file: ".node-version"
# cache: "pnpm"
# cache-dependency-path: "pnpm-lock.yaml"
# - name: Install dependencies
# run: pnpm install --frozen-lockfile
# - name: harhdat coverage
# run: pnpm coverage
# continue-on-error: true
# timeout-minutes: 30
# env:
# NODE_OPTIONS: --max-old-space-size=8192
# Merge
# - name: Remove path from contract names in Hardhat
# run: |
# sed -i "s/SF:.*src/SF:src/g" coverage/lcov.info
# - name: Merge coverage reports
# run: |
# lcov \
# --rc lcov_branch_coverage=1 \
# --add-tracefile lcov_foundry.info \
# --add-tracefile coverage/lcov.info \
# --output-file lcov_merged.info
# Instead of merge
- name: Rename coverage file
run: mv lcov_foundry.info lcov_merged.info
# Filter
- name: Filter out from coverage
run: lcov --remove lcov_merged.info -o lcov_merged.info
'test/*'
'script/*'
'src/Dependencies/Ownable.sol'
'src/Zappers/Modules/Exchanges/UniswapV3/UniPriceConverter.sol'
'src/NFTMetadata/*'
'src/MultiTroveGetter.sol'
'src/HintHelpers.sol'
# Send to coveralls
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
base-path: ./contracts/
path-to-lcov: ./contracts/lcov_merged.info
debug: true