Test: init testing setup #1
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: ci | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly | |
- name: Run foundry build | |
run: | | |
forge --version | |
forge build | |
id: build | |
lint-check: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly | |
- name: Run foundry fmt check | |
run: | | |
forge fmt --check | |
id: fmt | |
test: | |
runs-on: ubuntu-latest | |
needs: lint-check | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly | |
- name: Run foundry tests | |
# --ast tests enables inline configs to work https://github.com/foundry-rs/foundry/issues/7310#issuecomment-1978088200 | |
run: | | |
forge test -vv --gas-report --ast | |
id: test | |
fuzz: | |
runs-on: ubuntu-latest | |
needs: lint-check | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly | |
- name: Run foundry tests | |
run: | | |
FOUNDRY_PROFILE=fuzz forge test -vv | |
id: fuzz | |
coverage: | |
runs-on: ubuntu-latest | |
needs: lint-check | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly | |
- name: Run foundry coverage | |
run: | | |
FOUNDRY_PROFILE=coverage forge coverage --report summary | |
id: coverage |