Skip to content

Commit 36f9068

Browse files
committed
Integration tests: include minimum required RDBMS versions
1 parent 7b80229 commit 36f9068

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/integration-tests.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,22 @@ 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+
# Actually we support v10.2.2+, but Docker Hub doesn't.
30+
image: mariadb:10.2.5
2431
- name: PostgreSQL
2532
type: PGSQL
2633
image: postgres:latest
34+
- name: PostgreSQL (minimum required version)
35+
type: PGSQL
36+
image: postgres:9.6.0
2737

2838
name: ${{ matrix.database.name }}
2939
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)