From c3aea55a2275e6ff6973aaff190fe3ad470437b3 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sun, 11 Aug 2024 17:20:53 +0200 Subject: [PATCH] test on Python 3.8, 3.9, 3.10, 3.11, 3.12 run the py38 tests on old, but still supported ubuntu 20.04. run the py312 tests on new ubuntu 24.04 (gh runner still "beta"). --- .github/workflows/ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7597094..fcdb690 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,9 +29,21 @@ jobs: fail-fast: true matrix: include: + - os: ubuntu-20.04 + python-version: '3.8' + toxenv: py38 + - os: ubuntu-22.04 + python-version: '3.9' + toxenv: py39 + - os: ubuntu-22.04 + python-version: '3.10' + toxenv: py310 - os: ubuntu-22.04 python-version: '3.11' toxenv: py311 + - os: ubuntu-24.04 + python-version: '3.12' + toxenv: py312 env: TOXENV: ${{ matrix.toxenv }}