Skip to content

Commit

Permalink
reduce ci rpc overhead
Browse files Browse the repository at this point in the history
  • Loading branch information
spengrah committed Jul 23, 2024
1 parent dd2347b commit 4c7f47f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
pull_request:

env:
FOUNDRY_PROFILE: ci
FOUNDRY_PROFILE: default
INFURA_KEY: ${{ secrets.INFURA_KEY }}
ALCHEMY_KEY: ${{ secrets.ALCHEMY_KEY }}
GC_RPC: ${{ secrets.GC_RPC }}
Expand Down Expand Up @@ -49,6 +49,10 @@ jobs:

- name: Run tests
run: forge test -vvv
env:
# make fuzzing semi-deterministic to avoid noisy gas cost estimation
# due to non-deterministic fuzzing (but still use pseudo-random fuzzing seeds)
FOUNDRY_FUZZ_SEED: 0x${{ github.event.pull_request.base.sha || github.sha }}

# coverage:
# name: "Test coverage"
Expand Down

0 comments on commit 4c7f47f

Please sign in to comment.