From d3945ab51a26327e22827016a13e01fe4486ddfe Mon Sep 17 00:00:00 2001 From: "Scott C. Livingston" Date: Tue, 12 Nov 2024 16:00:28 -0800 Subject: [PATCH] CI: also test on macOS --- .github/workflows/main.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8910b58..52f3831 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,7 +7,13 @@ on: jobs: build-and-test: name: Build and test - runs-on: ubuntu-22.04 + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ + ubuntu-22.04, + macos-latest, + ] steps: - uses: actions/checkout@v4 - run: rustup toolchain install stable --profile minimal