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.yml25
1 files changed, 16 insertions, 9 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 752ddb5..fb34daa 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -9,24 +9,32 @@ jobs:
linux:
strategy:
matrix:
- python-version: ['3.7', '3.8', '3.9', '3.10']
+ python-version: [
+ '3.8',
+ '3.9',
+ '3.10',
+ '3.11',
+ '3.12',
+ ]
include:
- - python-version: '3.7'
- os: ubuntu-18.04 # MySQL 5.7.32
- python-version: '3.8'
- os: ubuntu-18.04 # MySQL 5.7.32
+ os: ubuntu-20.04 # MySQL 8.0.36
- python-version: '3.9'
- os: ubuntu-20.04 # MySQL 8.0.22
+ os: ubuntu-20.04 # MySQL 8.0.36
- python-version: '3.10'
- os: ubuntu-22.04 # MySQL 8.0.28
+ os: ubuntu-22.04 # MySQL 8.0.36
+ - python-version: '3.11'
+ os: ubuntu-22.04 # MySQL 8.0.36
+ - python-version: '3.12'
+ os: ubuntu-22.04 # MySQL 8.0.36
runs-on: ${{ matrix.os }}
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
@@ -61,4 +69,3 @@ jobs:
run: |
coverage combine
coverage report
- codecov