From f9939642759f8953a157e9ac89cd63ba06754bf9 Mon Sep 17 00:00:00 2001 From: pyth0n1c Date: Fri, 22 Nov 2024 11:56:26 -0800 Subject: [PATCH] Fix the runs-on portion of the yml --- .github/workflows/test_through_configure.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test_through_configure.yml b/.github/workflows/test_through_configure.yml index f9fc3cd0..94b9f42e 100644 --- a/.github/workflows/test_through_configure.yml +++ b/.github/workflows/test_through_configure.yml @@ -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 @@ -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