From 173d159d9a945f16fe81cfc4baf0482b2ddea8a7 Mon Sep 17 00:00:00 2001 From: Bartosz Date: Fri, 12 Jun 2026 01:20:03 +0200 Subject: [PATCH] Modernize the CI test matrix Run the CI test job across a Python version matrix of 3.11, 3.12 and 3.13 instead of a single fixed 3.13 interpreter. --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c4653ba..7596ae4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,12 +8,16 @@ on: jobs: test: runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + python-version: ['3.11', '3.12', '3.13'] steps: - uses: actions/checkout@v5 - name: Set up Python uses: actions/setup-python@v6 with: - python-version: '3.13' + python-version: ${{ matrix.python-version }} cache: pip - run: pip install -r requirements-dev.txt - name: Byte-compile sources