diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-08 08:07:30 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-08 08:07:38 +0000 |
commit | f6a576f0ec04a9b2fa2982e2e9188d874bbd156c (patch) | |
tree | 2224798b59442d1e4f6124afdbba2aafa6984fc1 /.github/workflows/ci.yml | |
parent | Releasing debian version 1.26.1-3. (diff) | |
download | mycli-f6a576f0ec04a9b2fa2982e2e9188d874bbd156c.tar.xz mycli-f6a576f0ec04a9b2fa2982e2e9188d874bbd156c.zip |
Merging upstream version 1.27.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 25 |
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 |