Skip to content

Commit

Permalink
Merge pull request #366 from sablier-labs/ci/deep
Browse files Browse the repository at this point in the history
ci: use `fromJSON` to convert string into digits
  • Loading branch information
PaulRBerg committed Jul 8, 2024
2 parents 2bf87a0 + 44dfe8f commit 68b5cfa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-deep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"

0 comments on commit 68b5cfa

Please sign in to comment.