Skip to content

workflow to verify t8n filling support #1

workflow to verify t8n filling support

workflow to verify t8n filling support #1

Workflow file for this run

name: Verify t8n support
jobs:
t8n-fill-support:

Check failure on line 4 in .github/workflows/fillwitht8n.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/fillwitht8n.yaml

Invalid workflow file

You have an error in your yaml syntax on line 4
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up uv
uses: ./.github/actions/setup-uv
- name: Set up Python
run: uv python install 3.10
- name: Install EEST
run: |
uv sync --no-progress
uv run python --version
- name: Build EVMONE EVM
uses: ./.github/actions/build-evm-client/evmone
id: evm-builder2
with:
targets: "evmone-t8n"
- name: Build GO EVM
uses: ./.github/actions/build-evm-client/geth
- name: Verify EEST t8n fill
run: |
uv run fill tests/frontier/opcodes/test_push.py::test_push
- name: Verify GETH t8n fill
run: |
uv run fill tests/frontier/opcodes/test_push.py::test_push --evm-bin evm
- name: Verify EVMONE t8n fill
run: |
uv run fill tests/frontier/opcodes/test_push.py::test_push --evm-bin evmone-t8n