This repository has been archived by the owner on Jan 31, 2025. It is now read-only.
ci: run cron jobs on Sunday evening #998
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" | |
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-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" | |
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: "test/fork/**/*.sol" | |
name: "Fork tests" | |
coverage: | |
needs: ["lint", "build"] | |
secrets: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
uses: "sablier-labs/reusable-workflows/.github/workflows/forge-coverage.yml@main" | |
with: | |
match-path: "test/integration/**/*.sol" |