Arbitrum: deployment data, contracts and final constants #76
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: test | |
on: | |
push: | |
branches: [ "dev", "main" ] | |
pull_request: | |
branches: [ "dev", "main" ] | |
workflow_dispatch: | |
env: | |
FOUNDRY_PROFILE: ci | |
jobs: | |
check: | |
strategy: | |
fail-fast: true | |
name: Foundry project | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly-09fe3e041369a816365a020f715ad6f94dbce9f2 | |
- name: Run Forge fmt check | |
run: | | |
forge --version | |
forge fmt --check | |
id: fmt_check | |
- name: Run Forge build | |
run: | | |
forge build --skip script --skip test --sizes | |
forge build | |
id: build | |
- name: Run Forge tests | |
run: | | |
forge t -vvv | |
id: test | |
- name: Run Forge coverage | |
run: | | |
forge coverage | |
id: coverage |