From 20061a0f7c4e0336de82bae8645369b3e55b89db Mon Sep 17 00:00:00 2001 From: Austin Hartzheim Date: Thu, 9 Apr 2026 11:58:46 -0500 Subject: [PATCH] ci: enable CI builds on proprietary OSes --- .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 a437809..6f9ae49 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,10 @@ name: CI jobs: check: name: Check - runs-on: ubuntu-latest + strategy: + matrix: + os: [ ubuntu-latest, macos-latest, windows-latest ] + runs-on: ${{ matrix.os }} steps: - name: Checkout sources uses: actions/checkout@v3