We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 511e96f commit 8677264Copy full SHA for 8677264
.github/workflows/sqlx.yml
@@ -309,7 +309,9 @@ jobs:
309
docker-compose -f tests/docker-compose.yml run -d -p 3306:3306 --name mysql_${{ matrix.mysql }}_client_ssl mysql_${{ matrix.mysql }}_client_ssl
310
sleep 60
311
312
+ # MySQL 5.7 supports TLS but not TLSv1.3 as required by RusTLS.
313
- uses: actions-rs/cargo@v1
314
+ if: ${{ !(matrix.mysql == '5_7' && matrix.tls == 'rustls') }}
315
with:
316
command: test
317
args: >
0 commit comments