From b72da900ba0df96d3846facce3b5d4e979ef23cb Mon Sep 17 00:00:00 2001 From: Noah Kennedy Date: Wed, 31 Jan 2024 16:44:35 -0600 Subject: [PATCH] ci: add macos to features check ci --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e0cae1f..2305f10 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,10 @@ jobs: check-features: name: Check feature combinations - runs-on: ubuntu-latest + strategy: + matrix: + os: [ ubuntu-latest, macos-latest ] + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 with: