Fix broken spec link for get_validator_from_deposit in Electra gap document #470
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: Assertoor tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ '*' ] | |
paths-ignore: | |
- 'docs/**' | |
- '.all-contributorsrc' | |
- 'README.md' | |
- 'LICENSE' | |
- 'metrics/**' | |
jobs: | |
ethereum-testnet: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build Docker image | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
file: ./Dockerfile | |
tags: lambda_ethereum_consensus:latest | |
load: true # Important for building without pushing | |
- name: Setup kurtosis testnet and run assertoor tests | |
uses: ethpandaops/kurtosis-assertoor-github-action@v1 | |
with: | |
enclave_name: "elixir-consensus-assertoor" | |
kurtosis_version: "1.6.0" | |
ethereum_package_url: 'github.com/lambdaclass/ethereum-package' | |
ethereum_package_branch: 'lecc-integration-electra' | |
ethereum_package_args: './.github/config/assertoor/network-params.yml' |