Skip to content

Arbitrum: deployment data, contracts and final constants #76

Arbitrum: deployment data, contracts and final constants

Arbitrum: deployment data, contracts and final constants #76

Workflow file for this run

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