From ee9369aea30d57fb540817d351ec96da7978137c Mon Sep 17 00:00:00 2001 From: XMLHexagram Date: Mon, 2 Dec 2024 18:45:28 +0100 Subject: [PATCH] fix --- .github/workflows/linter.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index ffe8947b4..03faa6d6f 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -28,7 +28,7 @@ jobs: channel: 'stable' - name: Setup Rust toolchain - uses: dtolnay/rust-toolchain@stable + uses: dtolnay/rust-toolchain@nightly with: components: rustfmt, clippy @@ -61,7 +61,9 @@ jobs: run: cargo fmt -- --check - name: Run cargo clippy - run: cargo clippy -- -D warnings + run: | + rustup override set stable + cargo clippy -- -D warnings flutter-analyze: name: Flutter analyze