Skip to content

made it more clear when a feature flag is necessary #77

made it more clear when a feature flag is necessary

made it more clear when a feature flag is necessary #77

Workflow file for this run

name: Clippy
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-Dwarnings" # Make sure CI fails on all warnings, including Clippy lints
jobs:
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Clippy
run: cargo clippy --workspace --all-targets --all-features --tests