Skip to content

chore(op-alloy): Update to use op-alloy flashblock types #125

chore(op-alloy): Update to use op-alloy flashblock types

chore(op-alloy): Update to use op-alloy flashblock types #125

Workflow file for this run

name: "[common] Lint"
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: warp-ubuntu-latest-x64-16x
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
override: true
components: rustfmt
- name: Build
run: cargo build --workspace --verbose
- name: Lint
run: cargo clippy --workspace -- -D warnings
- name: Format code
run: cargo fmt --all -- --check
- name: Deny
uses: EmbarkStudios/cargo-deny-action@v2