From 7d1f3e7a08fe64a495de9727a0e3ce401c88012b Mon Sep 17 00:00:00 2001 From: Fabian-Lars Date: Thu, 23 Nov 2023 21:56:49 +0100 Subject: [PATCH] ci: Test rust crates with all features enabled --- .github/workflows/test-rust.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-rust.yml b/.github/workflows/test-rust.yml index 8095d0e7..e8fd7cbc 100644 --- a/.github/workflows/test-rust.yml +++ b/.github/workflows/test-rust.yml @@ -193,7 +193,11 @@ jobs: - name: test ${{ matrix.package }} if: matrix.package != 'tauri-plugin-sql' - run: ${{ matrix.platform.runner }} ${{ matrix.platform.command }} --package ${{ matrix.package }} --target ${{ matrix.platform.target }} --all-targets + run: ${{ matrix.platform.runner }} ${{ matrix.platform.command }} --package ${{ matrix.package }} --target ${{ matrix.platform.target }} --all-targets --all-features + + - name: test ${{ matrix.package }} sqlite + if: matrix.package == 'tauri-plugin-sql' + run: ${{ matrix.platform.runner }} ${{ matrix.platform.command }} --package ${{ matrix.package }} --target ${{ matrix.platform.target }} --all-targets --features sqlite - name: test ${{ matrix.package }} mysql if: matrix.package == 'tauri-plugin-sql'