Skip to content

Merge branch 'feat/erc-7579-interfaces' into feat/slither #57

Merge branch 'feat/erc-7579-interfaces' into feat/slither

Merge branch 'feat/erc-7579-interfaces' into feat/slither #57

Workflow file for this run

name: Coverage
on: push
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "20.x"
- name: Install lcov (for genhtml)
run: sudo apt-get update && sudo apt-get install -y lcov
- name: Install JavaScript Dependencies
run: yarn install --frozen-lockfile
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Install Foundry Dependencies
run: forge install
- name: Generate Hardhat & Foundry Coverage Report
run: yarn coverage:report
- name: Upload Foundry Coverage Report to Codecov
uses: codecov/[email protected]
with:
file: ./coverage/foundry/lcov.info
flags: foundry
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: Upload Hardhat Coverage Report to Codecov
uses: codecov/[email protected]
with:
file: ./coverage/lcov.info
flags: hardhat
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}