Skip to content

Commit

Permalink
ci: change default runs to 50,000 in ci-deep
Browse files Browse the repository at this point in the history
  • Loading branch information
smol-ninja committed Mar 25, 2024
1 parent 458dc34 commit 0a75661
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-deep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ on:
workflow_dispatch:
inputs:
unitFuzzRuns:
default: "100000"
default: "50000"
description: "Unit: number of fuzz runs."
required: false
integrationFuzzRuns:
default: "100000"
default: "50000"
description: "Integration: number of fuzz runs."
required: false
invariantRuns:
Expand All @@ -41,7 +41,7 @@ jobs:
needs: ["lint", "build"]
uses: "sablier-labs/reusable-workflows/.github/workflows/forge-test.yml@main"
with:
foundry-fuzz-runs: ${{ inputs.unitFuzzRuns || 100000 }}
foundry-fuzz-runs: ${{ inputs.unitFuzzRuns || 50000 }}
foundry-profile: "test-optimized"
match-path: "test/unit/**/*.sol"
name: "Unit tests"
Expand Down

0 comments on commit 0a75661

Please sign in to comment.