From f590eec88be20b439c9b2c8b993ae10615c871ab Mon Sep 17 00:00:00 2001 From: Beanow <497556+Beanow@users.noreply.github.com> Date: Wed, 14 Dec 2022 21:56:56 +0100 Subject: [PATCH] ci: clippy should be --features not --feature --- .github/workflows/lint-rust.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint-rust.yml b/.github/workflows/lint-rust.yml index 986954d7..4ad8c167 100644 --- a/.github/workflows/lint-rust.yml +++ b/.github/workflows/lint-rust.yml @@ -52,17 +52,17 @@ jobs: - uses: actions-rs/clippy-check@v1 with: token: ${{ secrets.GITHUB_TOKEN }} - args: --workspace --package 'tauri-plugin-sql' --all-targets --feature sqlite -- -D warnings + args: --workspace --package 'tauri-plugin-sql' --all-targets --features sqlite -- -D warnings name: clippy sql:sqlite - uses: actions-rs/clippy-check@v1 with: token: ${{ secrets.GITHUB_TOKEN }} - args: --workspace --package 'tauri-plugin-sql' --all-targets --feature mysql -- -D warnings + args: --workspace --package 'tauri-plugin-sql' --all-targets --features mysql -- -D warnings name: clippy sql:mysql - uses: actions-rs/clippy-check@v1 with: token: ${{ secrets.GITHUB_TOKEN }} - args: --workspace --package 'tauri-plugin-sql' --all-targets --feature postgres -- -D warnings + args: --workspace --package 'tauri-plugin-sql' --all-targets --features postgres -- -D warnings name: clippy sql:postgres fmt: