Skip to content

Commit b17d885

Browse files
committed
Integration tests: include minimum required RDBMS versions
1 parent 41c31f2 commit b17d885

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/integration-tests.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,21 @@ jobs:
1818
- name: MySQL
1919
type: MYSQL
2020
image: mysql:latest
21+
- name: MySQL (minimum required version)
22+
type: MYSQL
23+
image: mysql:8.0.0
2124
- name: MariaDB
2225
type: MYSQL
2326
image: mariadb:latest
27+
- name: MariaDB (minimum required version)
28+
type: MYSQL
29+
image: mariadb:10.2.2
2430
- name: PostgreSQL
2531
type: PGSQL
2632
image: postgres:latest
33+
- name: PostgreSQL (minimum required version)
34+
type: PGSQL
35+
image: postgres:9.6.0
2736

2837
name: ${{ matrix.database.name }}
2938
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)