From 8802214f88304dcb578af5cee51f84bbdbb334f1 Mon Sep 17 00:00:00 2001 From: Michael O'Keefe Date: Fri, 22 Nov 2024 09:27:03 -0700 Subject: [PATCH] Re-enable all os/python versions --- .github/workflows/build_and_test.yaml | 32 +++++++++++++-------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/build_and_test.yaml b/.github/workflows/build_and_test.yaml index b5e01d7a..d130baf0 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: '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