refactor: automate libraries linkage and remove precompiles #2822
Workflow file for this run
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" | |
concurrency: | |
cancel-in-progress: true | |
group: ${{github.workflow}}-${{github.ref}} | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- "main" | |
- "staging" | |
- "staging-blast" | |
jobs: | |
lint: | |
uses: "sablier-labs/reusable-workflows/.github/workflows/forge-lint.yml@main" | |
bulloak: | |
needs: ["lint"] | |
uses: "sablier-labs/reusable-workflows/.github/workflows/bulloak-check.yml@main" | |
with: | |
skip-modifiers: true | |
tree-path: "tests" | |
build: | |
uses: "sablier-labs/reusable-workflows/.github/workflows/forge-build.yml@main" | |
test-unit: | |
needs: ["lint", "build"] | |
uses: "sablier-labs/reusable-workflows/.github/workflows/forge-test.yml@main" | |
with: | |
foundry-fuzz-runs: 2000 | |
foundry-profile: "test-optimized" | |
match-path: "tests/unit/**/*.sol" | |
name: "Unit tests" | |
test-integration: | |
needs: ["lint", "build"] | |
uses: "sablier-labs/reusable-workflows/.github/workflows/forge-test.yml@main" | |
with: | |
foundry-fuzz-runs: 2000 | |
foundry-profile: "test-optimized" | |
match-path: "tests/integration/**/*.sol" | |
name: "Integration tests" | |
test-invariant: | |
needs: ["lint", "build"] | |
uses: "sablier-labs/reusable-workflows/.github/workflows/forge-test.yml@main" | |
with: | |
foundry-profile: "test-optimized" | |
match-path: "tests/invariant/**/*.sol" | |
name: "Invariant tests" | |
test-fork: | |
needs: ["lint", "build"] | |
secrets: | |
MAINNET_RPC_URL: ${{ secrets.MAINNET_RPC_URL }} | |
uses: "sablier-labs/reusable-workflows/.github/workflows/forge-test.yml@main" | |
with: | |
foundry-fuzz-runs: 20 | |
foundry-profile: "test-optimized" | |
match-path: "tests/fork/**/*.sol" | |
name: "Fork tests" | |
coverage: | |
needs: ["lint", "build"] | |
secrets: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
MAINNET_RPC_URL: ${{ secrets.MAINNET_RPC_URL }} | |
uses: "sablier-labs/reusable-workflows/.github/workflows/forge-coverage.yml@main" | |
with: | |
match-path: "tests/{fork,integration,unit}/**/*.sol" |