summaryrefslogtreecommitdiffstats
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml14
1 files changed, 11 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 413b749..0a14472 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
@@ -42,6 +49,7 @@ jobs:
- name: Pytest / behave
env:
PYTEST_PASSWORD: root
+ PYTEST_HOST: 127.0.0.1
run: |
./setup.py test --pytest-args="--cov-report= --cov=mycli"