Skip to content

Commit

Permalink
Revert "Change workflow to not use matrix as this was making 3.10 run…
Browse files Browse the repository at this point in the history
… twice"

This reverts commit a250851.
  • Loading branch information
mikemanger committed Dec 5, 2024
1 parent a250851 commit a51e804
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a51e804

Please sign in to comment.