Skip to content

Commit

Permalink
ci: use single quote in deep ci (#966)
Browse files Browse the repository at this point in the history
  • Loading branch information
smol-ninja authored Jul 7, 2024
1 parent 269a18f commit 79f21a7
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/ci-deep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,23 @@ on:
workflow_dispatch:
inputs:
unitFuzzRuns:
default: "50000"
default: '50000'
description: "Unit: number of fuzz runs."
required: false
integrationFuzzRuns:
default: "50000"
default: '50000'
description: "Integration: number of fuzz runs."
required: false
invariantRuns:
default: "100"
default: '100'
description: "Invariant runs: number of sequences of function calls generated and run."
required: false
invariantDepth:
default: "100"
default: '100'
description: "Invariant depth: number of function calls made in a given run."
required: false
forkFuzzRuns:
default: "1000"
default: '1000'
description: "Fork: number of fuzz runs."
required: false

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 || '50000' }}
foundry-fuzz-runs: ${{ inputs.unitFuzzRuns || 50000 }}
foundry-profile: "test-optimized"
match-path: "test/unit/**/*.sol"
name: "Unit tests"
Expand All @@ -50,7 +50,7 @@ jobs:
needs: ["lint", "build"]
uses: "sablier-labs/reusable-workflows/.github/workflows/forge-test.yml@main"
with:
foundry-fuzz-runs: ${{ inputs.integrationFuzzRuns || '50000' }}
foundry-fuzz-runs: ${{ inputs.integrationFuzzRuns || 50000 }}
foundry-profile: "test-optimized"
match-path: "test/integration/**/*.sol"
name: "Integration tests"
Expand All @@ -59,8 +59,8 @@ jobs:
needs: ["lint", "build"]
uses: "sablier-labs/reusable-workflows/.github/workflows/forge-test.yml@main"
with:
foundry-invariant-depth: ${{ inputs.invariantDepth || '100' }}
foundry-invariant-runs: ${{ inputs.invariantRuns || '100' }}
foundry-invariant-depth: ${{ inputs.invariantDepth || 100 }}
foundry-invariant-runs: ${{ inputs.invariantRuns || 100 }}
foundry-profile: "test-optimized"
match-path: "test/invariant/**/*.sol"
name: "Invariant tests"
Expand All @@ -71,7 +71,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: ${{ inputs.forkFuzzRuns || 1000 }}
foundry-profile: "test-optimized"
match-path: "test/fork/**/*.sol"
name: "Fork tests"

0 comments on commit 79f21a7

Please sign in to comment.