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 7b80229 commit 36f9068Copy full SHA for 36f9068
.github/workflows/integration-tests.yml
@@ -18,12 +18,22 @@ jobs:
18
- name: MySQL
19
type: MYSQL
20
image: mysql:latest
21
+ - name: MySQL (minimum required version)
22
+ type: MYSQL
23
+ image: mysql:8.0.0
24
- name: MariaDB
25
26
image: mariadb:latest
27
+ - name: MariaDB (minimum required version)
28
29
+ # Actually we support v10.2.2+, but Docker Hub doesn't.
30
+ image: mariadb:10.2.5
31
- name: PostgreSQL
32
type: PGSQL
33
image: postgres:latest
34
+ - name: PostgreSQL (minimum required version)
35
+ type: PGSQL
36
+ image: postgres:9.6.0
37
38
name: ${{ matrix.database.name }}
39
runs-on: ubuntu-latest
0 commit comments