Skip to content

doc: add experiments in table of contents #5

doc: add experiments in table of contents

doc: add experiments in table of contents #5

Workflow file for this run

name: ci
on: push
env:
FOUNDRY_PROFILE: ci
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Run linter (check mode)
run: forge fmt --check
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Build contracts
run: |
forge --version
forge build --sizes
- name: Run tests
run: forge test -vvvv --summary --detailed --gas-report