From 5b274c26742e579ef791ec87f81d64777c864cdc Mon Sep 17 00:00:00 2001 From: Michael O'Keefe Date: Fri, 22 Nov 2024 07:05:19 -0700 Subject: [PATCH] Run only macos-14 for testing; change version from number to string --- .github/workflows/build_and_test.yaml | 40 +++++++++++++-------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/workflows/build_and_test.yaml b/.github/workflows/build_and_test.yaml index e0a789ae..4f74234c 100644 --- a/.github/workflows/build_and_test.yaml +++ b/.github/workflows/build_and_test.yaml @@ -9,30 +9,30 @@ jobs: fail-fast: true matrix: os: - - base: ubuntu - version: latest + #- base: ubuntu + # version: latest + #- base: macos + # version: '13' + # arch: 'x86_64' - base: macos - version: 13 - arch: 'x86_64' - - base: macos - version: 14 + version: '14' arch: 'arm64' - - base: windows - version: latest - arch: 'amd64' + #- base: windows + # version: latest + # arch: 'amd64' python-version: - - "8" - - "9" + #- "8" + #- "9" - "10" - include: - - os: - base: ubuntu - version: latest - platform: linux - - os: - base: windows - version: latest - ls: dir + #include: + # - os: + # base: ubuntu + # version: latest + # platform: linux + # - os: + # base: windows + # version: latest + # ls: dir runs-on: ${{ format('{0}-{1}', matrix.os.base, matrix.os.version) }} steps: - uses: actions/checkout@v4