File tree Expand file tree Collapse file tree 2 files changed +36
-1
lines changed Expand file tree Collapse file tree 2 files changed +36
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Hook Tests
2+
3+ on :
4+ pull_request :
5+ push :
6+ branches :
7+ - main
8+ workflow_dispatch :
9+
10+ env :
11+ MOONBEAM_RPC_URL : ${{secrets.MOONBEAM_RPC_URL}}
12+ FOUNDRY_PROFILE : ci
13+
14+ jobs :
15+ hook-tests :
16+ name : Hook Tests (Unit + Integration)
17+ runs-on : ubuntu-latest
18+
19+ steps :
20+ - name : Checkout code
21+ uses : actions/checkout@v2
22+ with :
23+ submodules : recursive
24+
25+ - name : Setup Environment
26+ uses : ./.github/actions
27+
28+ - name : Run Hook Tests
29+ uses : nick-fields/retry@v3
30+ with :
31+ polling_interval_seconds : 30
32+ retry_wait_seconds : 60
33+ timeout_minutes : 20
34+ max_attempts : 3
35+ command : time forge test --match-contract Hook --fork-url moonbeam -vvv
Original file line number Diff line number Diff line change 2828 retry_wait_seconds : 60
2929 timeout_minutes : 20
3030 max_attempts : 3
31- command : time forge test --match-contract " MoonbeamTest|IntegrationTest" --fork-url moonbeam -vvv
31+ command : time forge test --match-contract MoonbeamTest --fork-url moonbeam -vvv
You can’t perform that action at this time.
0 commit comments