add sepolia verification arguments #1042
Workflow file for this run
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
on: [push, workflow_dispatch] | |
name: test | |
jobs: | |
check: | |
name: Foundry project | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install | |
working-directory: . | |
run: yarn install | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly | |
- name: Run tests | |
working-directory: . | |
run: yarn test && forge coverage --no-match-test Mainnet --report lcov | |
- name: Coverage | |
uses: VeryGoodOpenSource/very_good_coverage@v2 | |
with: | |
path: "./lcov.info" | |
min_coverage: 95 | |
exclude: "test/* test/resources/* archive/* script/*" | |
- name: Run snapshot | |
working-directory: . | |
run: forge snapshot --no-match-test Mainnet |