Skip to content

Commit

Permalink
fix matrix notation in workflow specs
Browse files Browse the repository at this point in the history
  • Loading branch information
sibocw committed Jun 18, 2024
1 parent f40ba05 commit 7b7591e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/tests_linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,10 @@ on: [push]

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests_macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
build:
strategy:
matrix:
os: ["macos-13", "macos-latest"]
python-version: ["3.12"]
runs-on: ["macos-13", "macos-latest"]

runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/tests_windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,10 @@ env:

jobs:
build:

runs-on: windows-latest
strategy:
matrix:
python-version: ["3.12"]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down

0 comments on commit 7b7591e

Please sign in to comment.