From 3793706f8d391dec9cc4acb1e8cb18c07fb7f2c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Collonval?= Date: Tue, 8 Aug 2023 14:46:53 +0200 Subject: [PATCH] Add Python 3.5, 3.6 and 3.12.0-rc.1 to test matrix --- .github/workflows/ci.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dbfbbea7..29b3e277 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,11 +8,19 @@ on: jobs: test: - runs-on: ubuntu-22.04 + name: Test Python ${{ matrix.python-version }} on ${{ matrix.os }} + runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "pypy3.9"] + os: ["ubuntu-22.04"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12.0-rc.1", "pypy3.9"] + include: + # Python < 3.7 is not available on ubuntu-22.04 + - os: "ubuntu-20.04" + python-version: "3.5" + - os: "ubuntu-20.04" + python-version: "3.6" steps: - uses: actions/checkout@v3