Skip to content

docs: cleanup

docs: cleanup #47

Workflow file for this run

name: test
on:
pull_request_target:
types:
- opened
- edited
- synchronize
env:
FOUNDRY_PROFILE: ci
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
with:
version: nightly
- name: Run Forge install
run: |
cd contracts
forge --version
forge install
id: install
- name: Run Forge build
run: |
cd contracts
forge --version
forge build --sizes
id: build
- name: Run Forge tests
run: |
cd contracts
forge test -vvv
id: test