diff --git a/.github/workflows/ci-deep.yml b/.github/workflows/ci-deep.yml index 56adfeb5..3be11778 100644 --- a/.github/workflows/ci-deep.yml +++ b/.github/workflows/ci-deep.yml @@ -119,8 +119,8 @@ jobs: - name: Run Foundry tests run: yarn test:invariant env: - FOUNDRY_INVARIANT_RUNS: ${{ github.event.inputs.invariantRuns }} - FOUNDRY_INVARIANT_DEPTH: ${{ github.event.inputs.invariantDepth }} + FOUNDRY_INVARIANT_RUNS: ${{ github.event.inputs.invariantRuns || '300' }} + FOUNDRY_INVARIANT_DEPTH: ${{ github.event.inputs.invariantDepth || '50' }} test-fuzz: needs: ["build", "lint"] @@ -146,4 +146,4 @@ jobs: - name: Run Foundry tests run: yarn test:fuzz env: - FOUNDRY_FUZZ_RUNS: ${{ github.event.inputs.fuzzRuns }} \ No newline at end of file + FOUNDRY_FUZZ_RUNS: ${{ github.event.inputs.fuzzRuns || '100000' }} \ No newline at end of file