Run tests on all OSes
This commit is contained in:
parent
76e0e1aa8f
commit
9b62f42a99
1 changed files with 11 additions and 2 deletions
13
.github/workflows/test.yml
vendored
13
.github/workflows/test.yml
vendored
|
|
@ -40,10 +40,19 @@ jobs:
|
||||||
working-directory: desktop/src-tauri
|
working-directory: desktop/src-tauri
|
||||||
run: cargo check
|
run: cargo check
|
||||||
test:
|
test:
|
||||||
runs-on: windows-latest
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [windows-latest, macos-latest, ubuntu-latest]
|
||||||
|
features: [default-tls, rust-tls]
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- run: rustup toolchain install stable --profile minimal
|
- run: rustup toolchain install stable --profile minimal
|
||||||
- uses: Swatinem/rust-cache@v2
|
- uses: Swatinem/rust-cache@v2
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: cargo test
|
run: cargo test --no-default-features --features=${{ matrix.features }}
|
||||||
|
- name: Ensure openssl isn't included
|
||||||
|
if: ${{ matrix.features == 'rust-tls' && matrix.os == 'ubuntu-latest' }}
|
||||||
|
run: |
|
||||||
|
cargo install cargo-tree
|
||||||
|
cargo tree --no-default-features --features ${{ matrix.features }} | grep openssl && false || true
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue