Skip to content

feat: port op-proposer from Optimism fork #13

feat: port op-proposer from Optimism fork

feat: port op-proposer from Optimism fork #13

Workflow file for this run

name: PR
on:
push:
branches: [main]
pull_request:
branches:
- "**"
paths:
- "crates/**"
- "client-programs/**"
- "native-host/**"
- "zkvm-host/**"
- "op-succinct-proposer/**"
- "Cargo.toml"
merge_group:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Formatting & Clippy
runs-on: [runs-on, runner=8cpu-linux-x64, "run-id=${{ github.run_id }}"]
env:
CARGO_NET_GIT_FETCH_WITH_CLI: "true"
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Setup CI
uses: ./.github/actions/setup
- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
env:
CARGO_INCREMENTAL: 1
- name: Run cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-features --all-targets -- -D warnings -A incomplete-features
env:
CARGO_INCREMENTAL: 1