From b87091dd56f316826a3ef4817895a4fcadf153cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alban=20F=C3=A9ron?= Date: Sat, 31 Dec 2022 17:58:35 +0100 Subject: [PATCH] Force tests to run on Ubuntu 20.04 and test for py 3.11 and 3.12 Ubuntu 20.04 should allow Python 3.6 tests to run, even if this version is EOL --- .github/workflows/tests.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 6f8fa60..a394448 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -21,7 +21,7 @@ on: jobs: build: name: Build - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 strategy: matrix: python-version: @@ -30,6 +30,8 @@ jobs: - 3.8 - 3.9 - "3.10" + - 3.11 + - 3.12 fail-fast: false steps: - name: Checkout