From 182f71f82be5f7b3c591cb464c2fb23df5db9f1e Mon Sep 17 00:00:00 2001 From: Tom Vercauteren Date: Sun, 26 Jan 2025 15:40:10 +0000 Subject: [PATCH] run CI of mac and windows as well --- .github/workflows/cmake.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 846d08c..ed7a2c8 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -9,9 +9,11 @@ env: jobs: build: # The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac. - # You can convert this to a matrix build if you need cross-platform coverage. - # See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix - runs-on: ubuntu-latest + strategy: + matrix: + os: [ubuntu-latest, windows-latest, macos-latest] + + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4