Skip to content

Commit

Permalink
chore: update ci-deep to have default input values when runnjng in cron
Browse files Browse the repository at this point in the history
  • Loading branch information
0xtekgrinder authored Dec 1, 2023
1 parent 97e0939 commit e5762fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-deep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,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: ${{ inputs.invariantRuns || '300' }}
FOUNDRY_INVARIANT_DEPTH: ${{ inputs.invariantDepth || '50' }}
ETH_NODE_URI_POLYGON: ${{ secrets.ETH_NODE_URI_POLYGON }}
ETH_NODE_URI_ARBITRUM: ${{ secrets.ETH_NODE_URI_ARBITRUM }}
ETH_NODE_URI_OPTIMISM: ${{ secrets.ETH_NODE_URI_OPTIMISM }}
Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:
- name: Run Foundry tests
run: yarn test:fuzz
env:
FOUNDRY_FUZZ_RUNS: ${{ github.event.inputs.fuzzRuns }}
FOUNDRY_FUZZ_RUNS: ${{ inputs.fuzzRuns || '100000' }}
ETH_NODE_URI_POLYGON: ${{ secrets.ETH_NODE_URI_POLYGON }}
ETH_NODE_URI_ARBITRUM: ${{ secrets.ETH_NODE_URI_ARBITRUM }}
ETH_NODE_URI_OPTIMISM: ${{ secrets.ETH_NODE_URI_OPTIMISM }}
Expand Down

0 comments on commit e5762fe

Please sign in to comment.