Skip to content

add additional unit tests demonstrating delegation flows #537

add additional unit tests demonstrating delegation flows

add additional unit tests demonstrating delegation flows #537

Workflow file for this run

name: Code Coverage
on: [push]
env:
## Loads environment from secrets
ETH_RPC_URL: ${{secrets.ETH_RPC_URL}}
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
# Report code coverage to discord
- name: Generate coverage
run: forge coverage --report lcov --no-match-test invariant
- name: Setup LCOV
uses: hrishikesh-kadam/setup-lcov@v1
- name: Filter lcov
run: |
lcov -r lcov.info "script/*" "test/*" -o lcov-filtered.info --rc lcov_branch_coverage=1 > coverage-summary.txt
echo "$(tail -4 coverage-summary.txt)" > coverage-summary.txt
- name: Verify coverage level
uses: zgosalvez/github-actions-report-lcov@v1
with:
coverage-files: ./lcov-filtered.info
minimum-coverage: 90 # Set coverage threshold.
# github-token: ${{ secrets.GITHUB_TOKEN }} # Adds a coverage summary comment to the PR.