generated from m0-foundation/foundry-template
-
Notifications
You must be signed in to change notification settings - Fork 3
41 lines (34 loc) · 983 Bytes
/
coverage.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
name: Forge Coverage
on:
push:
branches:
- main
pull_request:
permissions: write-all
jobs:
check:
name: Code Coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Install lcov
uses: hrishikesh-kadam/setup-lcov@v1
- name: Run coverage
id: coverage
env:
MNEMONIC: ${{ secrets.MNEMONIC_FOR_TESTS }}
MAINNET_RPC_URL: ${{ secrets.MAINNET_RPC_URL }}
ETHERSCAN_API_KEY: ${{ secrets.ETHERSCAN_API_KEY }}
run: make coverage profile=ci
- name: Report code coverage
uses: zgosalvez/github-actions-report-lcov@v3
with:
coverage-files: lcov.info
artifact-name: code-coverage-report
minimum-coverage: 95
github-token: ${{ secrets.GITHUB_TOKEN }}
update-comment: true