Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ jobs:

- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: v1.5.0

- name: Show Forge version
run: |
Expand Down
5 changes: 3 additions & 2 deletions foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ optimizer = true
optimizer_runs = 100000
evm_version = "paris"
show_progress = true
fs_permissions = [{ access = "read", path = "./test/v1.2/evm.proof"}, { access = "read", path = "./test/v1.3/evm.proof"}, { access = "read", path = "./test/v1.4/evm.proof"}]
fs_permissions = [{ access = "read", path = "./test/v1.2/evm.proof"}, { access = "read", path = "./test/v1.3/evm.proof"}, { access = "read", path = "./test/v1.4/evm.proof"}, { access = "read", path = "./test/v1.5/evm.proof"}]

[profile.default.optimizer_details]
constantOptimizer = false
Expand All @@ -18,6 +18,7 @@ fs_permissions = [{ access = "read", path = "./test/v1.2/evm.proof"}, { access =
runs = 256

[fmt]
ignore = ["src/v1.2", "src/v1.3", "src/v1.4", "test/v1.2", "test/v1.3", "test/v1.4"]
sort_imports = true
bracket_spacing = true
int_types = "long"
Expand All @@ -28,4 +29,4 @@ fs_permissions = [{ access = "read", path = "./test/v1.2/evm.proof"}, { access =
single_line_statement_blocks = "single"
tab_width = 4
wrap_comments = false


Loading