Skip to content

feat(seismic-evm): carry signed_read + tx-context precompile factory test #152

feat(seismic-evm): carry signed_read + tx-context precompile factory test

feat(seismic-evm): carry signed_read + tx-context precompile factory test #152

Workflow file for this run

name: Seismic CI
on:
push:
branches: [seismic, veridise-audit-feb-2026]
pull_request:
branches: [seismic, veridise-audit-feb-2026]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
CARGO_NET_GIT_FETCH_WITH_CLI: true
jobs:
rustfmt:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
- run: cargo fmt --all --check
build:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
shared-key: "build-cache"
- name: cargo build
run: cargo build
warnings:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
shared-key: "warnings-cache"
- name: cargo check warnings
run: RUSTFLAGS="-D warnings" cargo check
test:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
shared-key: "test-cache"
- name: cargo test
run: cargo test