Skip to content

fix: core tests ci workflow #11

fix: core tests ci workflow

fix: core tests ci workflow #11

Workflow file for this run

name: Core tests
on:
push:
branches-ignore:
- "master"
- "feat/tests"
- "feat/rc3"
- "feat/rc2"
- "feat/rc1"
- "feat/next-vote"
schedule:
- cron: "0 0 * * TUE"
jobs:
run-tests:
name: Run core repo integration tests
runs-on: "ubuntu-latest"
timeout-minutes: 100
services:
hardhat-node:
image: ghcr.io/lidofinance/hardhat-node:2.24.3
ports:
- 8555:8545
env:
ETH_RPC_URL: "https://mainnet.infura.io/v3/${{ secrets.WEB3_INFURA_PROJECT_ID }}"
steps:
- uses: actions/checkout@v4
- name: Check that the fork is ready
shell: bash
run: timeout 30 bash -c 'until printf "" 2>>/dev/null >>/dev/tcp/$0/$1; do sleep 1; done' 127.0.0.1 8555
- name: Core tests
uses: ./.github/actions/core_tests
with:
vote: "normal"