CI Deep #30
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 Deep" | |
env: | |
MAINNET_RPC_URL: ${{ secrets.MAINNET_RPC_URL }} | |
on: | |
schedule: | |
- cron: "0 3 */2 * *" # at 3:00am UTC every 2 days | |
workflow_dispatch: | |
inputs: | |
integrationFuzzRuns: | |
default: '100000' | |
description: "Integration: number of fuzz runs." | |
required: false | |
invariantRuns: | |
default: '50000' | |
description: "Invariant runs: number of sequences of function calls generated and run." | |
required: false | |
invariantDepth: | |
default: '200' | |
description: "Invariant depth: number of function calls made in a given run." | |
required: false | |
forkFuzzRuns: | |
default: '20' | |
description: "Fork: number of fuzz runs." | |
required: false | |
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: ${{ fromJSON(inputs.integrationFuzzRuns || '100000') }} | |
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-invariant-depth: ${{ fromJSON(inputs.invariantDepth || '200') }} | |
foundry-invariant-runs: ${{ fromJSON(inputs.invariantRuns || '50000') }} | |
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: ${{ fromJSON(inputs.forkFuzzRuns || '20') }} | |
foundry-profile: "test-optimized" | |
match-path: "tests/fork/**/*.sol" | |
name: "Fork tests" | |
notify-on-failure: | |
if: failure() | |
needs: ["lint", "build", "test-integration", "test-invariant", "test-fork"] | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Send Slack notification" | |
uses: "rtCamp/action-slack-notify@v2" | |
env: | |
SLACK_CHANNEL: "#ci-notifications" | |
SLACK_MESSAGE: "CI Workflow failed for ${{ github.repository }} on branch ${{ github.ref }} at job ${{ github.job }}." | |
SLACK_USERNAME: "GitHub CI" | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }} |