Merge pull request #2 from MZero-Labs/fix/make-tests #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
env: | |
MNEMONIC: ${{ secrets.MNEMONIC_FOR_TESTS }} | |
MAINNET_RPC_URL: ${{ secrets.MAINNET_RPC_URL }} | |
run: make coverage profile=ci | |
id: coverage | |
- 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 |