Skip to content

Commit

Permalink
Change workflow to not use matrix as this was making 3.10 run twice
Browse files Browse the repository at this point in the history
  • Loading branch information
mikemanger committed Dec 5, 2024
1 parent 2cfcfba commit a250851
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,17 @@ 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 ${{ matrix.python-version }}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: |
3.9
3.10
3.11
3.12
3.13
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit a250851

Please sign in to comment.