Skip to content

fix clippy, add Makefile #379

fix clippy, add Makefile

fix clippy, add Makefile #379

Workflow file for this run

name: Rust
on: push
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Run fmt
run: cargo fmt --check
- name: Run clippy
run: |
cargo clippy --all-features --no-deps -- -D warnings
cargo clippy --examples --no-deps -- -D warnings
- name: Run tests
run: cargo test