File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -138,9 +138,18 @@ jobs:
138
138
with :
139
139
tool : cargo-hack
140
140
- 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
142
147
run : cargo +${{ matrix.rust }} hack check --feature-powerset --features tls-rustls --skip tls-native --no-dev-deps
143
148
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
+
144
153
result :
145
154
name : Result (CI)
146
155
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments