Skip to content

fixed test execution feature flags #67

fixed test execution feature flags

fixed test execution feature flags #67

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@v3
- name: Run Clippy
run: cargo clippy --workspace --all-targets --all-features --tests