summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmjith Ramanujam <amjith.r@gmail.com>2021-02-19 07:34:47 -0800
committerGitHub <noreply@github.com>2021-02-19 07:34:47 -0800
commit6821b21256d54142a8a21333679d619107ece05e (patch)
tree0c641e40ae7704171c0b6bff1019fd563bf3f36e
parent586e78dceb3108a0475c66f634c0f9ed6e8501b5 (diff)
parent5a8b3d6ee95fa44930c040c0ce457a9ea7c2ad93 (diff)
Merge pull request #949 from dbcli/pasenor/test-more-servers
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