Skip to content

Merge pull request #25 from ICME-Lab/feat/ci #2

Merge pull request #25 from ICME-Lab/feat/ci

Merge pull request #25 from ICME-Lab/feat/ci #2

Workflow file for this run

name: zkEngine CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
components: rustfmt, clippy
- name: Run cargo fmt --check
run: cargo fmt -- --check
- name: Run cargo clippy
run: cargo clippy --verbose --all-targets --all-features -- -D warnings