File tree 2 files changed +7
-3
lines changed
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 23
23
uses : " foundry-rs/foundry-toolchain@v1"
24
24
25
25
- name : " Run the tests"
26
- run : " cd evm && make test "
26
+ run : " CI_FORK_RPC=${{ secrets.POLYGON_MUMBAI_RPC }} cd evm && make ci "
27
27
28
28
- name : " Add test summary"
29
29
run : |
Original file line number Diff line number Diff line change 1
1
include env/testing.env
2
2
3
- .PHONY : dependencies test clean all
3
+ .PHONY : dependencies test clean all ci
4
4
5
5
all : build
6
6
@@ -26,7 +26,11 @@ build: dependencies
26
26
27
27
.PHONY : test
28
28
test : dependencies
29
- forge test --fork-url ${TESTING_FORK_RPC} -vv --fail-fast --fuzz-runs 128
29
+ forge test --fork-url ${TESTING_FORK_RPC} -vv
30
+
31
+ .PHONY : ci
32
+ ci : dependencies
33
+ forge test --fork-url ${CI_FORK_RPC} -vv --fail-fast
30
34
31
35
.PHONY : gas-report
32
36
gas-report : dependencies
You can’t perform that action at this time.
0 commit comments