Create cargo-clippy-check.yml

This commit is contained in:
Djkáťo 2024-03-11 17:58:48 +01:00 committed by GitHub
parent 0b5842c6eb
commit a72037e6d1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,14 @@
on: push
name: Clippy check
# Make sure CI fails on all warnings, including Clippy lints
env:
RUSTFLAGS: "-Dwarnings"
jobs:
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Clippy
run: cargo clippy --all-targets --all-features