Skip to content

Commit ce45ded

Browse files
committed
feat: work on CI core-related workflows
1 parent 0f28955 commit ce45ded

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

.github/workflows/core_tests.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
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"

0 commit comments

Comments
 (0)