From 3e589ee78f14b428fec317a23ef59bc4e6916b9f Mon Sep 17 00:00:00 2001 From: Phil Weir Date: Sun, 25 Aug 2024 01:44:35 +0100 Subject: [PATCH] ci: add 3.12 to the build matrix --- .github/workflows/python-test-ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-test-ci.yml b/.github/workflows/python-test-ci.yml index 2cba3af2..859ea89d 100644 --- a/.github/workflows/python-test-ci.yml +++ b/.github/workflows/python-test-ci.yml @@ -3,12 +3,16 @@ on: [push, pull_request] jobs: unit-pip: runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.11", "3.12"] steps: - uses: actions/checkout@v4 - - name: Set up Python + + - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: - python-version: '3.11' + python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip "hatchling < 1.22"