From fd7bc012d06ae4b42f3972866f6275b57838ded7 Mon Sep 17 00:00:00 2001 From: amrbashir Date: Thu, 18 May 2023 03:32:29 +0300 Subject: [PATCH] fix contains syntax --- .github/workflows/test-rust.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-rust.yml b/.github/workflows/test-rust.yml index 90bb2635..0c021ec9 100644 --- a/.github/workflows/test-rust.yml +++ b/.github/workflows/test-rust.yml @@ -69,7 +69,7 @@ jobs: run: cargo test --package ${{ matrix.package }} --all-targets - name: test ${{ matrix.package }} --all-features - if: ${{ !contains(fromJSON('["tauri-plugin-http", "tauri-plugin-upload", "tauri-plugin-updater", "tauri-plugin-webspcket", "tauri-plugin-sql"]', matrix.package)) }} + if: ${{ !contains(fromJSON('["tauri-plugin-http", "tauri-plugin-upload", "tauri-plugin-updater", "tauri-plugin-webspcket", "tauri-plugin-sql"]'), matrix.package) }} run: cargo test --package ${{ matrix.package }} --all-targets --all-features - name: test ${{ matrix.package }} mysql