From 8e33440e8306904d98d6f6eff7b2b313015b6574 Mon Sep 17 00:00:00 2001 From: PlexSheep Date: Fri, 16 Feb 2024 16:10:59 +0100 Subject: [PATCH] clippy ci --- .gitea/workflows/cargo.yaml | 12 +++++++----- .github/workflows/cargo.yaml | 12 +++++++----- 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a/.gitea/workflows/cargo.yaml b/.gitea/workflows/cargo.yaml index b4a75df..f35cb90 100644 --- a/.gitea/workflows/cargo.yaml +++ b/.gitea/workflows/cargo.yaml @@ -18,7 +18,9 @@ jobs: - name: install rust uses: https://github.com/dtolnay/rust-toolchain@stable - name: install additional rust things - run: rustup component add rustfmt + run: | + rustup component add rustfmt + rustup component add clippy - name: config custom registry run: | mkdir -p ~/.cargo/ @@ -28,10 +30,10 @@ jobs: echo '[registries.cscherr]' >> ~/.cargo/config.toml echo 'index = "https://git.cscherr.de/PlexSheep/_cargo-index.git"' >> ~/.cargo/config.toml cat ~/.cargo/config.toml - - name: cargo check - run: cargo check --all-features --all-targets - - name: cargo fix - run: cargo fix --all-features --all-targets + - name: cargo clippy check + run: cargo clippy --all-features --all-targets + - name: cargo clippy fix + run: cargo clippy --fix --all-features --all-targets - name: cargo fmt run: cargo fmt --all - name: cargo test diff --git a/.github/workflows/cargo.yaml b/.github/workflows/cargo.yaml index ad223f1..ea06297 100644 --- a/.github/workflows/cargo.yaml +++ b/.github/workflows/cargo.yaml @@ -19,7 +19,9 @@ jobs: - name: install rust uses: dtolnay/rust-toolchain@stable - name: install additional rust things - run: rustup component add rustfmt + run: | + rustup component add rustfmt + rustup component add clippy - name: config custom registry run: | mkdir -p ~/.cargo/ @@ -29,10 +31,10 @@ jobs: echo '[registries.cscherr]' >> ~/.cargo/config.toml echo 'index = "https://git.cscherr.de/PlexSheep/_cargo-index.git"' >> ~/.cargo/config.toml cat ~/.cargo/config.toml - - name: cargo check - run: cargo check --all-features --all-targets - - name: cargo fix - run: cargo fix --all-features --all-targets + - name: cargo clippy check + run: cargo clippy --all-features --all-targets + - name: cargo clippy fix + run: cargo clippy --fix --all-features --all-targets - name: cargo fmt run: cargo fmt --all - name: cargo test