From 0a75661bc77f087620567265e1c7f973b1c504a8 Mon Sep 17 00:00:00 2001 From: smol-ninja Date: Mon, 25 Mar 2024 21:57:28 +0000 Subject: [PATCH] ci: change default runs to 50,000 in ci-deep --- .github/workflows/ci-deep.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-deep.yml b/.github/workflows/ci-deep.yml index 928d4a9dc..16d942d5a 100644 --- a/.github/workflows/ci-deep.yml +++ b/.github/workflows/ci-deep.yml @@ -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: @@ -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"