diff --git a/.github/workflows/lint-rust.yml b/.github/workflows/lint-rust.yml index 2ab15be3..3f04eae9 100644 --- a/.github/workflows/lint-rust.yml +++ b/.github/workflows/lint-rust.yml @@ -45,13 +45,13 @@ jobs: run: cargo clippy --workspace --exclude 'tauri-plugin-sql' --all-targets --all-features -- -D warnings - name: clippy sql:sqlite - run: cargo clippy --workspace --package 'tauri-plugin-sql' --all-targets --features sqlite -- -D warnings + run: cargo clippy --package 'tauri-plugin-sql' --all-targets --features sqlite -- -D warnings - name: clippy sql:mysql - run: cargo clippy --workspace --package 'tauri-plugin-sql' --all-targets --features mysql -- -D warnings + run: cargo clippy --package 'tauri-plugin-sql' --all-targets --features mysql -- -D warnings - name: clippy sql:postgres - run: cargo clippy --workspace --package 'tauri-plugin-sql' --all-targets --features postgres -- -D warnings + run: cargo clippy --package 'tauri-plugin-sql' --all-targets --features postgres -- -D warnings fmt: runs-on: ubuntu-latest