File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed
Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Normal vote CI
2+
3+ on :
4+ push :
5+ branches-ignore :
6+ - " master"
7+ - " feat/tests"
8+ - " feat/rc3"
9+ - " feat/rc2"
10+ - " feat/rc1"
11+ - " feat/next-vote"
12+ schedule :
13+ - cron : " 0 0 * * TUE"
14+ jobs :
15+ run-tests :
16+ name : Run all tests on NORMAL runner
17+ runs-on : " ubuntu-latest"
18+ timeout-minutes : 100
19+
20+ services :
21+ hardhat-node :
22+ image : ghcr.io/lidofinance/hardhat-node:2.22.19.2-shanghai
23+ ports :
24+ - 8555:8545
25+ env :
26+ ETH_RPC_URL : " https://mainnet.infura.io/v3/${{ secrets.WEB3_INFURA_PROJECT_ID }}"
27+
28+ steps :
29+ - uses : actions/checkout@v4
30+
31+ - name : Check that the fork is ready
32+ shell : bash
33+ run : timeout 30 bash -c 'until printf "" 2>>/dev/null >>/dev/tcp/$0/$1; do sleep 1; done' 127.0.0.1 8555
34+
35+ - name : Core tests
36+ uses : ./.github/actions/core_tests
37+ with :
38+ vote : " normal"
You can’t perform that action at this time.
0 commit comments