Skip to content

Commit 94bfe38

Browse files
committed
update worker
1 parent 7ec5fea commit 94bfe38

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
strategy:
2020
matrix:
21-
profile: [post-cancun,post-cancun-via-ir,solc-past-versions-0,via-ir,min-solc,min-solc-via-ir]
21+
profile: [post-prague,post-prague-via-ir,solc-past-versions-0,via-ir,min-solc,min-solc-via-ir]
2222

2323
steps:
2424
- uses: actions/checkout@v4
@@ -40,24 +40,20 @@ jobs:
4040
- name: Run Tests with ${{ matrix.profile }}
4141
run: >
4242
( [ "${{ matrix.profile }}" = "post-cancun" ] &&
43-
forge test --use 0.8.25 --evm-version "cancun"
43+
forge test --use 0.8.28 --evm-version "prague"
4444
) ||
4545
( [ "${{ matrix.profile }}" = "post-cancun-via-ir" ] &&
46-
forge test --use 0.8.25 --evm-version "cancun" --via-ir
47-
) ||
48-
( [ "${{ matrix.profile }}" = "solc-past-versions-0" ] &&
49-
forge test --use 0.8.23 --fuzz-runs 16 &&
50-
forge test --use 0.8.24 --fuzz-runs 16
46+
forge test --use 0.8.28 --evm-version "prague" --via-ir
5147
) ||
5248
( [ "${{ matrix.profile }}" = "via-ir" ] &&
5349
forge test --via-ir
5450
) ||
5551
( [ "${{ matrix.profile }}" = "min-solc" ] &&
5652
forge fmt --check &&
57-
forge test --use 0.8.23
53+
forge test --use 0.8.28
5854
) ||
5955
( [ "${{ matrix.profile }}" = "min-solc-via-ir" ] &&
60-
forge test --use 0.8.23 --via-ir
56+
forge test --use 0.8.28 --via-ir
6157
)
6258
6359
codespell:

foundry.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ cbor_metadata = false
77
via-ir = false
88
optimizer = true
99
optimizer_runs = 200
10+
evm_version = "prague"
1011

1112
[profile.deploy]
1213
via-ir = true

0 commit comments

Comments
 (0)