We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ee2550 commit 40e3dd4Copy full SHA for 40e3dd4
.github/workflows/ci.yaml
@@ -10,6 +10,8 @@ env:
10
RUSTFLAGS: -Dwarnings
11
POSTGRES_DB: async_sqlx_session_tests
12
PG_TEST_DB_URL: postgres://postgres:postgres@localhost/async_sqlx_session_tests
13
+ MYSQL_DB: async_sqlx_session_tests
14
+ MYSQL_TEST_DB_URL: mysql://root@localhost/async_sqlx_session_tests
15
16
jobs:
17
build_and_test:
@@ -33,6 +35,19 @@ jobs:
33
35
ports:
34
36
- 5432:5432
37
38
+ mysql:
39
+ image: mysql
40
+ env:
41
+ MYSQL_ROOT_PASSWORD: root
42
+ MYSQL_DATABASE: async_sqlx_session_tests
43
+ ports:
44
+ - 3306:3306
45
+ options: >-
46
+ --health-cmd "mysqladmin ping"
47
+ --health-interval 10s
48
+ --health-timeout 5s
49
+ --health-retries 3
50
+
51
steps:
52
- uses: actions/checkout@main
53
0 commit comments