Nightly mainnet tests #113
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: Nightly mainnet tests | |
defaults: | |
run: | |
shell: zsh -e {0} | |
on: | |
workflow_dispatch: | |
inputs: | |
ref: | |
description: The branch, tag or SHA to checkout and build from | |
default: master | |
type: string | |
required: true | |
schedule: | |
# Every day at 00:00 UTC | |
- cron: '0 0 * * *' | |
jobs: | |
tests: | |
timeout-minutes: 720 # 12 hours | |
runs-on: [self-hosted-ghr-custom, size-s-x64, profile-consensusSpecs] | |
strategy: | |
fail-fast: false | |
matrix: | |
fork: | |
- phase0 | |
- altair | |
- bellatrix | |
- capella | |
- deneb | |
- electra | |
- fulu | |
- eip7732 | |
- eip7805 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Setup Python | |
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 | |
with: | |
python-version: '3.13' | |
- name: test-${{ matrix.fork }} | |
run: make test preset=mainnet fork=${{ matrix.fork }} |