From a51e804aa937465c180425488ae81fd30b68b604 Mon Sep 17 00:00:00 2001 From: Mike Manger Date: Thu, 5 Dec 2024 14:26:39 +0000 Subject: [PATCH] Revert "Change workflow to not use matrix as this was making 3.10 run twice" This reverts commit a250851b4fb60befd035794a7bee747ff693b3a8. --- .github/workflows/pipeline.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 43ac258..b2f7dc5 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -27,17 +27,16 @@ jobs: test: runs-on: ubuntu-latest + strategy: + matrix: + python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] + steps: - uses: actions/checkout@v4 - - name: Set up Python + - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: - python-version: | - 3.9 - 3.10 - 3.11 - 3.12 - 3.13 + python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip