summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorgy Frolov <gosha@fro.lv>2021-01-17 04:33:26 +0300
committerGeorgy Frolov <gosha@fro.lv>2021-01-17 04:37:39 +0300
commit5a8b3d6ee95fa44930c040c0ce457a9ea7c2ad93 (patch)
treeb17ff6dfda1ca6aa84647aa6c905baa50f2337f4
parentb1984e215132a34ab2e06799a16e8e511a55e51c (diff)
CI: test with different OS and MySQL versions
-rw-r--r--.github/workflows/ci.yml15
1 files changed, 11 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 413b749..ccb15aa 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -7,13 +7,20 @@ on:
jobs:
linux:
-
- runs-on: ubuntu-latest
-
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
-
+ include:
+ - python-version: 3.6
+ os: ubuntu-16.04 # MySQL 5.7.32
+ - python-version: 3.7
+ os: ubuntu-18.04 # MySQL 5.7.32
+ - python-version: 3.8
+ os: ubuntu-18.04 # MySQL 5.7.32
+ - python-version: 3.9
+ os: ubuntu-20.04 # MySQL 8.0.22
+
+ runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2