From c816b483fa2078dcff5ea34ff87ae5233b0abd88 Mon Sep 17 00:00:00 2001 From: Jan Kiszka Date: Tue, 13 Dec 2022 14:56:14 +0100 Subject: [PATCH] ci: Adjust images to cover all Python versions Only Ubuntu 20.04 is still supported with 3.5 and 3.6, so pin to it. Expand the test to 3.10 and 3.11 at this chance. Quoting is needed now to avoid that 3.10 becomes 3.1. Signed-off-by: Jan Kiszka --- .github/workflows/next.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/next.yml b/.github/workflows/next.yml index 53ddc0f..f819a75 100644 --- a/.github/workflows/next.yml +++ b/.github/workflows/next.yml @@ -14,10 +14,10 @@ env: jobs: perform_tests: name: Run tests on kas code - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 strategy: matrix: - python-version: [3.5, 3.6, 3.7, 3.8, 3.9] + python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11"] steps: - name: Check out repo uses: actions/checkout@v2