From 3d4679a9ae862f8535026d4a709aae798c094531 Mon Sep 17 00:00:00 2001 From: Fabian-Lars Date: Mon, 2 Jan 2023 18:16:31 +0100 Subject: [PATCH] fix copy paste mistake --- .github/workflows/lint-rust.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lint-rust.yml b/.github/workflows/lint-rust.yml index 7c9ff19e8..2ab15be3a 100644 --- a/.github/workflows/lint-rust.yml +++ b/.github/workflows/lint-rust.yml @@ -42,16 +42,16 @@ jobs: - uses: Swatinem/rust-cache@v1 - name: clippy - run: --workspace --exclude 'tauri-plugin-sql' --all-targets --all-features -- -D warnings + run: cargo clippy --workspace --exclude 'tauri-plugin-sql' --all-targets --all-features -- -D warnings - name: clippy sql:sqlite - run: --workspace --package 'tauri-plugin-sql' --all-targets --features sqlite -- -D warnings + run: cargo clippy --workspace --package 'tauri-plugin-sql' --all-targets --features sqlite -- -D warnings - name: clippy sql:mysql - run: --workspace --package 'tauri-plugin-sql' --all-targets --features mysql -- -D warnings + run: cargo clippy --workspace --package 'tauri-plugin-sql' --all-targets --features mysql -- -D warnings - name: clippy sql:postgres - run: --workspace --package 'tauri-plugin-sql' --all-targets --features postgres -- -D warnings + run: cargo clippy --workspace --package 'tauri-plugin-sql' --all-targets --features postgres -- -D warnings fmt: runs-on: ubuntu-latest