From 9cae54a4e3db1ff314251261dff162927da2c3e8 Mon Sep 17 00:00:00 2001 From: Simon Howroyd Date: Tue, 13 Feb 2024 20:39:57 +0000 Subject: [PATCH] Added matrix 311 and 312 to action --- .github/workflows/python-testing.yml | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python-testing.yml b/.github/workflows/python-testing.yml index 0571a5f..b237da8 100644 --- a/.github/workflows/python-testing.yml +++ b/.github/workflows/python-testing.yml @@ -16,14 +16,18 @@ permissions: jobs: linting: runs-on: windows-latest + strategy: + fail-fast: false + matrix: + python_version: ["3.11", "3.12"] steps: - uses: actions/checkout@v4 with: submodules: true - - name: Set up Python 3.11 + - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: - python-version: "3.11" + python-version: ${{ matrix.python-version }} - name: Install dependencies run: | git submodule update --init --recursive @@ -39,14 +43,18 @@ jobs: pytest: runs-on: windows-latest + strategy: + fail-fast: false + matrix: + python_version: ["3.11", "3.12"] steps: - uses: actions/checkout@v4 with: submodules: true - - name: Set up Python 3.11 + - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: - python-version: "3.11" + python-version: ${{ matrix.python-version }} - name: Install dependencies run: | git submodule update --init --recursive