From 757616ffd5e452248de3036c3033c18af6126191 Mon Sep 17 00:00:00 2001 From: Khenziii Date: Sat, 20 Jan 2024 14:18:01 +0100 Subject: [PATCH] fix github action (probably, lol) --- .github/workflows/check.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) 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