From df73183f2cc97c694f1efbf4cf2729629835c99b Mon Sep 17 00:00:00 2001 From: Fabian-Lars Date: Thu, 23 Nov 2023 22:30:25 +0100 Subject: [PATCH] test http without features --- .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 e8fd7cbc..6b631391 100644 --- a/.github/workflows/test-rust.yml +++ b/.github/workflows/test-rust.yml @@ -192,9 +192,13 @@ jobs: run: cargo install cross --git https://github.com/cross-rs/cross - name: test ${{ matrix.package }} - if: matrix.package != 'tauri-plugin-sql' + if: matrix.package != 'tauri-plugin-sql' && matrix.package != 'tauri-plugin-http' run: ${{ matrix.platform.runner }} ${{ matrix.platform.command }} --package ${{ matrix.package }} --target ${{ matrix.platform.target }} --all-targets --all-features + - name: test ${{ matrix.package }} + if: matrix.package == 'tauri-plugin-http' + run: ${{ matrix.platform.runner }} ${{ matrix.platform.command }} --package ${{ matrix.package }} --target ${{ matrix.platform.target }} --all-targets + - 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