-
Notifications
You must be signed in to change notification settings - Fork 9
53 lines (47 loc) · 1.18 KB
/
solidity-cov.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
name: Solidity contracts Codecov
env:
FOUNDRY_PROFILE: ci
on:
pull_request:
branches:
- "**"
paths:
- "contracts/evm/**"
- ".github/workflows/solidity-cov.yml"
push:
branches:
- "**"
defaults:
run:
working-directory: contracts/evm
jobs:
code-coverage:
runs-on: ubuntu-latest
env:
CARGO_TERM_COLOR: always
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Build Contracts
run: |
forge remappings
forge build
- name: Generate code coverage
run: |
export PATH=$PATH:$HOME/.config/.foundry/bin
forge coverage --report lcov
sudo apt-get install lcov
lcov --remove lcov.info 'test/*' 'script/*' 'library/*' '**/libraries/**' > lcov2.info
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: lcov2.info
flags: solidity
fail_ci_if_error: true