From b98ab653fc73c01622861fe0c3b355e3b4f05de1 Mon Sep 17 00:00:00 2001 From: amrbashir Date: Thu, 18 May 2023 05:24:57 +0300 Subject: [PATCH] --no-default-features --- .github/workflows/lint-rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint-rust.yml b/.github/workflows/lint-rust.yml index f2476765..0f51d2f7 100644 --- a/.github/workflows/lint-rust.yml +++ b/.github/workflows/lint-rust.yml @@ -155,11 +155,11 @@ jobs: - name: clippy ${{ matrix.package }} mysql if: matrix.package == 'tauri-plugin-sql' - run: cargo clippy --package ${{ matrix.package }} --all-targets --features mysql -- -D warnings + run: cargo clippy --package ${{ matrix.package }} --all-targets --no-default-features --features mysql -- -D warnings - name: clippy ${{ matrix.package }} postgres if: matrix.package == 'tauri-plugin-sql' - run: cargo clippy --package ${{ matrix.package }} --all-targets --features postgres -- -D warnings + run: cargo clippy --package ${{ matrix.package }} --all-targets --no-default-features --features postgres -- -D warnings fmt: runs-on: ubuntu-latest