-
Notifications
You must be signed in to change notification settings - Fork 4
37 lines (32 loc) · 1007 Bytes
/
foundry.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
on: [push, workflow_dispatch]
name: test
jobs:
check:
name: Foundry project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install
working-directory: .
run: yarn install
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Run local tests
working-directory: .
run: yarn test && forge coverage --no-match-test Mainnet --report lcov
- name: Coverage
uses: VeryGoodOpenSource/very_good_coverage@v2
with:
path: './lcov.info'
min_coverage: 95
exclude: 'test/* test/resources/* archive/* script/*'
- name: Run snapshot
working-directory: .
run: forge snapshot --no-match-test Mainnet
- name: Run mainnet tests
working-directory: .
run: forge test --match-test Mainnet --fork-url ${{ secrets.MAINNET_RPC_URL }}