From 1d954c7360fcb1563321f9c103e957b9f3d4907f Mon Sep 17 00:00:00 2001 From: Will Jones Date: Wed, 20 Dec 2023 11:42:52 -0800 Subject: [PATCH] try windows CI --- .github/workflows/python.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 10892841..d490520a 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -44,12 +44,19 @@ jobs: run: pytest -m "not slow" -x -v --durations=30 tests - name: doctest run: pytest --doctest-modules lancedb - mac: + platform: + name: "Platform: ${{ matrix.config.name }}" timeout-minutes: 30 strategy: matrix: - mac-runner: [ "macos-13", "macos-13-xlarge" ] - runs-on: "${{ matrix.mac-runner }}" + config: + - name: x86 Mac + runner: macos-13 + - name: Arm Mac + runner: macos-13-xlarge + - name: x86 Windows + runner: windows-latest + runs-on: "${{ matrix.config.runner }}" defaults: run: shell: bash