Remove type parameter EXECUTION_PAYLOAD_TREE_DEPTH
from SyncProtocolVerifier
#76
Workflow file for this run
This file contains 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: test | |
on: | |
pull_request: | |
paths: | |
- .github/workflows/test.yml | |
- Cargo.toml | |
- Cargo.lock | |
- ci/** | |
- crates/** | |
push: | |
branches: main | |
paths: | |
- .github/workflows/test.yml | |
- Cargo.toml | |
- Cargo.lock | |
- ci/** | |
- crates/** | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo test | |
- run: cargo build | |
- run: make lint-tools lint |