Skip to content

[chore] modular opcode supports different primes (#499) #2466

[chore] modular opcode supports different primes (#499)

[chore] modular opcode supports different primes (#499) #2466

Workflow file for this run

name: Lint Workspace
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
jobs:
lint:
name: Lint
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: Run fmt
run: |
cargo fmt --all -- --check
- name: Run clippy
run: cargo clippy --all-targets --all -- -D warnings