fix: ci workflow name #10
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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" |