From 383bc811fb3a28861c77ca8ef18fa3bdcbb83110 Mon Sep 17 00:00:00 2001 From: amrbashir Date: Thu, 18 May 2023 04:51:27 +0300 Subject: [PATCH] typo and --no-default-features --- .github/workflows/lint-rust.yml | 4 ++-- .github/workflows/test-rust.yml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/lint-rust.yml b/.github/workflows/lint-rust.yml index 82a79e13..90a7eaf2 100644 --- a/.github/workflows/lint-rust.yml +++ b/.github/workflows/lint-rust.yml @@ -57,9 +57,9 @@ jobs: tauri-plugin-fs: - .github/workflows/lint-rust.yml - plugins/fs/** - tauri-plugin-fs-wtach: + tauri-plugin-fs-watch: - .github/workflows/lint-rust.yml - - plugins/fs-wtach/** + - plugins/fs-watch/** tauri-plugin-global-shortcut: - .github/workflows/lint-rust.yml - plugins/global-shortcut/** diff --git a/.github/workflows/test-rust.yml b/.github/workflows/test-rust.yml index f6b3fc22..997e9713 100644 --- a/.github/workflows/test-rust.yml +++ b/.github/workflows/test-rust.yml @@ -59,9 +59,9 @@ jobs: tauri-plugin-fs: - .github/workflows/test-rust.yml - plugins/fs/** - tauri-plugin-fs-wtach: + tauri-plugin-fs-watch: - .github/workflows/test-rust.yml - - plugins/fs-wtach/** + - plugins/fs-watch/** tauri-plugin-global-shortcut: - .github/workflows/test-rust.yml - plugins/global-shortcut/** @@ -160,8 +160,8 @@ jobs: - name: test ${{ matrix.package }} mysql if: matrix.package == 'tauri-plugin-sql' - run: cargo test --package ${{ matrix.package }} --all-targets --features mysql + run: cargo test --package ${{ matrix.package }} --all-targets --no-default-features --features mysql - name: test ${{ matrix.package }} postgres if: matrix.package == 'tauri-plugin-sql' - run: cargo test --package ${{ matrix.package }} --all-targets --features postgres + run: cargo test --package ${{ matrix.package }} --all-targets --no-default-features --features postgres