diff --git a/.github/workflows/lint-rust.yml b/.github/workflows/lint-rust.yml index 720fb77d..4c1f5899 100644 --- a/.github/workflows/lint-rust.yml +++ b/.github/workflows/lint-rust.yml @@ -155,10 +155,6 @@ jobs: if: matrix.package != 'tauri-plugin-sql' run: cargo clippy --package ${{ matrix.package }} --all-targets -- -D warnings - - name: clippy ${{ matrix.package }} --all-features - if: ${{ !contains(fromJSON('["tauri-plugin-http", "tauri-plugin-upload", "tauri-plugin-updater", "tauri-plugin-websocket", "tauri-plugin-sql"]'), matrix.package) }} - run: cargo clippy --package ${{ matrix.package }} --all-targets --all-features -- -D warnings - - name: clippy ${{ matrix.package }} mysql if: matrix.package == 'tauri-plugin-sql' run: cargo clippy --package ${{ matrix.package }} --all-targets --no-default-features --features mysql -- -D warnings