From 14273bbdb9ce23e4281ed0dc4f26b1012001582c Mon Sep 17 00:00:00 2001 From: John Vandenberg Date: Thu, 24 Jul 2025 06:41:03 +0800 Subject: [PATCH] Add macos and windows to CI --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c875194..0478627 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,13 @@ on: jobs: build: - runs-on: ubuntu-latest + strategy: + matrix: + os: + - ubuntu-latest + - macos-latest + - windows-latest + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4