This repository has been archived by the owner on Jan 31, 2025. It is now read-only.
feat: support Blast network #774
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" | |
jobs: | |
lint: | |
uses: "sablier-labs/reusable-workflows/.github/workflows/forge-lint.yml@main" | |
build: | |
uses: "sablier-labs/reusable-workflows/.github/workflows/forge-build.yml@main" | |
test-integration: | |
needs: ["lint", "build"] | |
uses: "sablier-labs/reusable-workflows/.github/workflows/forge-test.yml@main" | |
with: | |
foundry-fuzz-runs: 5000 | |
foundry-profile: "test-optimized" | |
match-path: "test/integration/**/*.sol" | |
name: "Integration tests" | |
test-fork: | |
needs: ["lint", "build"] | |
secrets: | |
RPC_URL_MAINNET: ${{ secrets.RPC_URL_BLAST_SEPOLIA }} | |
uses: "sablier-labs/reusable-workflows/.github/workflows/forge-test.yml@main" | |
with: | |
foundry-fuzz-runs: 100 | |
foundry-profile: "test-optimized" | |
fuzz-seed: true | |
match-path: "test/fork/**/*.sol" | |
name: "Fork tests" | |
test-utils: | |
needs: ["lint", "build"] | |
uses: "sablier-labs/reusable-workflows/.github/workflows/forge-test.yml@main" | |
with: | |
foundry-profile: "test-optimized" | |
match-path: "test/utils/**/*.sol" | |
name: "Utils tests" | |
coverage: | |
needs: ["lint", "build"] | |
uses: "sablier-labs/reusable-workflows/.github/workflows/forge-coverage.yml@main" | |
with: | |
match-path: "test/integration/**/*.sol" |