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'