Skip to content

Commit

Permalink
Make changes based on feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkeating committed Feb 22, 2024
1 parent 535081e commit ba83d8e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Generate fuzz seed with 1 week TTL
run: >
echo "FOUNDRY_FUZZ_SEED=$(
echo $(($EPOCHSECONDS - $EPOCHSECONDS % 604800))
echo $(($EPOCHSECONDS - $EPOCHSECONDS % 86400))
)" >> $GITHUB_ENV
- name: Run tests
Expand All @@ -55,7 +55,7 @@ jobs:
- name: Recycle the fuzz seed from the test run
run: >
echo "FOUNDRY_FUZZ_SEED=$(
echo $(($EPOCHSECONDS - $EPOCHSECONDS % 604800))
echo $(($EPOCHSECONDS - $EPOCHSECONDS % 86400))
)" >> $GITHUB_ENV
- name: Run coverage
Expand Down Expand Up @@ -99,6 +99,8 @@ jobs:

- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
cache: false

- name: Install scopelint
uses: engineerd/[email protected]
Expand Down
1 change: 0 additions & 1 deletion foundry.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[profile.default]
evm_version = "paris"
fuzz = { seed = "1" }
optimizer = true
optimizer_runs = 10_000_000
remappings = [
Expand Down

0 comments on commit ba83d8e

Please sign in to comment.