@@ -146,6 +146,8 @@ jobs:
146
146
strategy :
147
147
matrix :
148
148
runtime : [async-std-native-tls, tokio-native-tls, actix-native-tls, async-std-rustls, tokio-rustls, actix-rustls]
149
+ if : >
150
+ !(github.event_name == 'pull_request' && startsWith(matrix.runtime, 'actix'))
149
151
needs : check
150
152
steps :
151
153
- uses : actions/checkout@v2
@@ -182,6 +184,8 @@ jobs:
182
184
matrix :
183
185
postgres : [12, 10, 9_6, 9_5]
184
186
runtime : [async-std-native-tls, tokio-native-tls, actix-native-tls, async-std-rustls, tokio-rustls, actix-rustls]
187
+ if : >
188
+ !(github.event_name == 'pull_request' && startsWith(matrix.runtime, 'actix'))
185
189
needs : check
186
190
steps :
187
191
- uses : actions/checkout@v2
@@ -234,6 +238,8 @@ jobs:
234
238
matrix :
235
239
mysql : [8, 5_7, 5_6]
236
240
runtime : [async-std-native-tls, tokio-native-tls, actix-native-tls, async-std-rustls, tokio-rustls, actix-rustls]
241
+ if : >
242
+ !(github.event_name == 'pull_request' && startsWith(matrix.runtime, 'actix'))
237
243
needs : check
238
244
steps :
239
245
- uses : actions/checkout@v2
@@ -277,6 +283,8 @@ jobs:
277
283
matrix :
278
284
mariadb : [10_5, 10_4, 10_3, 10_2, 10_1]
279
285
runtime : [async-std-native-tls, tokio-native-tls, actix-native-tls, async-std-rustls, tokio-rustls, actix-rustls]
286
+ if : >
287
+ !(github.event_name == 'pull_request' && startsWith(matrix.runtime, 'actix'))
280
288
needs : check
281
289
steps :
282
290
- uses : actions/checkout@v2
@@ -321,6 +329,8 @@ jobs:
321
329
matrix :
322
330
mssql : [2019]
323
331
runtime : [async-std-native-tls, tokio-native-tls, actix-native-tls, async-std-rustls, tokio-rustls, actix-rustls]
332
+ if : >
333
+ !(github.event_name == 'pull_request' && startsWith(matrix.runtime, 'actix'))
324
334
needs : check
325
335
steps :
326
336
- uses : actions/checkout@v2
0 commit comments