Update contract addresses and documentation #303
This file contains hidden or 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: Foundry | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
pull_request_target: | |
jobs: | |
check: | |
strategy: | |
fail-fast: true | |
name: Foundry project | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
- name: Install hardhat | |
run: | | |
yarn add --dev hardhat | |
id: hardhat-install | |
- name: Show Forge version | |
run: | | |
forge --version | |
- name: Run Forge fmt | |
run: | | |
forge fmt --check | |
id: fmt | |
- name: Run Forge build | |
run: | | |
forge build --force --skip test --sizes | |
id: build | |
- name: Run Forge tests | |
run: | | |
FOUNDRY_PROFILE=test forge test --gas-report | |
id: forge-test | |
- name: Run foundry coverage | |
run: FOUNDRY_PROFILE=coverage forge coverage --report summary | |
- name: Run Hardhat tests | |
run: | | |
npx hardhat test | |
id: hardhat-test |