diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 44128d3..1fec752 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -1,13 +1,14 @@ on: push name: 🧐 Clippy Check -# Make CI fail on all warnings, including Clippy lints -env: - RUSTFLAGS: "-Dwarnings" - jobs: clippy-check: runs-on: ubuntu-latest + env: + RUSTFLAGS: "-Dwarnings" steps: - - uses: actions/checkout@v3 + - name: Checkout code + uses: actions/checkout@v3 + + - name: Run Clippy run: cargo clippy --all-targets --all-features