diff --git a/.github/workflows/ci-deep.yml b/.github/workflows/ci-deep.yml index cb296e40..19d75e16 100644 --- a/.github/workflows/ci-deep.yml +++ b/.github/workflows/ci-deep.yml @@ -25,7 +25,7 @@ jobs: needs: ["lint", "build"] uses: "sablier-labs/reusable-workflows/.github/workflows/forge-test.yml@main" with: - foundry-fuzz-runs: ${{ inputs.integrationFuzzRuns || 100000 }} + foundry-fuzz-runs: ${{ fromJSON(inputs.integrationFuzzRuns) || 100000 }} foundry-profile: "test-optimized" match-path: "test/integration/**/*.sol" name: "Integration tests" @@ -36,7 +36,7 @@ jobs: RPC_URL_MAINNET: ${{ secrets.RPC_URL_MAINNET }} uses: "sablier-labs/reusable-workflows/.github/workflows/forge-test.yml@main" with: - foundry-fuzz-runs: ${{ inputs.forkFuzzRuns || 1000 }} + foundry-fuzz-runs: ${{ fromJSON(inputs.forkFuzzRuns) || 1000 }} foundry-profile: "test-optimized" match-path: "test/fork/**/*.sol" name: "Fork tests"