From 161f8233c0ef89d086e28d8ae7bde9f0d304d22f Mon Sep 17 00:00:00 2001 From: Andres Rios Tascon Date: Sun, 19 May 2024 12:25:46 -0400 Subject: [PATCH] ci: build and test crate on multiple OSs --- .github/workflows/rust.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 91b1ca2..fdef362 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -18,7 +18,11 @@ env: jobs: build-and-test: name: Build and test - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: [ubuntu-latest, macos-13, macos-14] steps: - name: Check out repo uses: actions/checkout@v4