Skip to content

Commit 1a71f1b

Browse files
committed
ci: check powerset with tls-native too
1 parent 03d87a3 commit 1a71f1b

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,9 +138,18 @@ jobs:
138138
with:
139139
tool: cargo-hack
140140
- uses: Swatinem/rust-cache@a95ba195448af2da9b00fb742d14ffaaf3c21f43 # v2
141-
- name: Run Cargo Hack
141+
142+
- name: Install libssl-dev
143+
if: ${{ matrix.os == 'ubuntu-latest' }}
144+
run: sudo apt-get install libssl-dev
145+
146+
- name: Run Cargo Hack with tls-rustls
142147
run: cargo +${{ matrix.rust }} hack check --feature-powerset --features tls-rustls --skip tls-native --no-dev-deps
143148

149+
- name: Run Cargo Hack with tls-native
150+
if: ${{ matrix.os == 'ubuntu-latest' }}
151+
run: cargo +${{ matrix.rust }} hack check --feature-powerset --features tls-native --skip tls-rustls --no-dev-deps
152+
144153
result:
145154
name: Result (CI)
146155
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)