From 44dfe8fc0410f29606a1f9fabfc4acb98510626e Mon Sep 17 00:00:00 2001 From: smol-ninja Date: Sun, 7 Jul 2024 16:02:25 +0100 Subject: [PATCH] ci: use fromJSON to convert string into digits --- .github/workflows/ci-deep.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"