From 6daea46c3c9ef1f0965e23310ddc0ed07d95a518 Mon Sep 17 00:00:00 2001 From: John Lapeyre Date: Thu, 18 Jan 2024 15:12:35 -0500 Subject: [PATCH] Run CI on macos and windows in addition to linux (#50) Previously, CI only builds and tests on linux. With this PR, we also test macos and windows. --- .github/workflows/main.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 453f40f..453a60d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,8 +13,11 @@ env: jobs: build: - runs-on: ubuntu-latest - + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: [ubuntu-latest, macos-11, windows-latest] steps: - uses: actions/checkout@v3 - name: Rust Format