Skip to content

Commit

Permalink
Fix the runs-on portion of the yml
Browse files Browse the repository at this point in the history
  • Loading branch information
pyth0n1c committed Nov 22, 2024
1 parent b8eecc4 commit f993964
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/test_through_configure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ jobs:
strategy:
matrix:
python_version: ["3.9", "3.10", "3.11", "3.12"]
runs-on: ["macos-12", "macos-13", "macos-14", "macos-15"]
operating_sysem: ["macos-12", "macos-13", "macos-14", "macos-15"]

runs-on: ${{ matrix.operating_system }}
steps:

#Install the given version of Python we will test against
Expand Down Expand Up @@ -61,7 +63,8 @@ jobs:
strategy:
matrix:
python_version: ["3.9", "3.10", "3.11", "3.12"]
runs-on: ["ubuntu-20.04", "ubuntu-22.04", "ubuntu-24.04"]
operating_system: ["ubuntu-20.04", "ubuntu-22.04", "ubuntu-24.04"]
runs-on: ${{ matrix.operating_system }}
steps:

#Install the given version of Python we will test against
Expand Down

0 comments on commit f993964

Please sign in to comment.