From 35511109cef378c644105fbea8a4b1088c2c41ed Mon Sep 17 00:00:00 2001 From: David Huggins-Daines Date: Fri, 27 Dec 2024 09:35:15 -0500 Subject: [PATCH] ci: test on windows and mac --- .github/workflows/tests.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3955b0b1..13e7e225 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -7,7 +7,11 @@ on: jobs: test: - runs-on: ubuntu-latest + strategy: + fail-fast: true + matrix: + os: [ubuntu-latest, windows-latest, macos-latest] + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 with: