ci: specify foundry toolchain version #1568
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 | |
concurrency: | |
group: ${{github.workflow}}-${{github.ref}} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: ".nvmrc" | |
- run: npm ci | |
- run: npm run lint:check | |
test-unit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: foundry-rs/[email protected] | |
with: | |
version: stable | |
- run: npm run test:unit | |
test-integration: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: foundry-rs/[email protected] | |
with: | |
version: stable | |
- run: npm run test:integration | |
test-e2e: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: foundry-rs/[email protected] | |
with: | |
version: stable | |
- run: npm run test:e2e | |
test-differential-balancer: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: foundry-rs/[email protected] | |
with: | |
version: stable | |
- run: npm run install:balancer | |
- run: npm run build:balancer | |
- run: npm run test:balancer | |
check-gas: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: foundry-rs/[email protected] | |
with: | |
version: stable | |
- run: forge snapshot --check | |
env: | |
FOUNDRY_PROFILE: default | |
coverage: | |
runs-on: ubuntu-latest | |
needs: test-unit | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: foundry-rs/[email protected] | |
with: | |
version: stable | |
- run: ./script/coverage_patch_deployer.sh && forge coverage --report lcov | |
env: | |
FOUNDRY_PROFILE: coverage | |
- run: sudo apt install -y lcov | |
- run: lcov -r lcov.info "src/libraries/*" -o lcov.info | |
- run: lcov -r lcov.info "src/asset-management/*" -o lcov.info | |
- run: lcov -r lcov.info "test/*" -o lcov.info | |
- run: | | |
! lcov --summary lcov.info | grep -q 0.0% | |
- uses: codecov/codecov-action@v5 | |
with: | |
fail_ci_if_error: true | |
files: ./lcov.info | |
coverage-integration: | |
runs-on: ubuntu-latest | |
needs: [test-unit, test-integration] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: foundry-rs/[email protected] | |
with: | |
version: stable | |
- run: ./script/coverage_patch_deployer.sh && forge coverage --report lcov | |
env: | |
FOUNDRY_PROFILE: coverage-integration | |
- run: sudo apt install -y lcov | |
- run: lcov -r lcov.info "test/*" -o lcov.info | |
- run: | | |
! lcov --summary lcov.info | grep -q 0.0% | |
- uses: codecov/codecov-action@v5 | |
with: | |
fail_ci_if_error: true | |
files: ./lcov.info |