From 1da75d9a9a0e3ed4153a7f0483087592f97b46ac Mon Sep 17 00:00:00 2001 From: Grandine Team Date: Sat, 23 Mar 2024 10:47:35 +0200 Subject: [PATCH] Testing macos and windows runners --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b775ca1a..a68d6bcd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,11 @@ on: [push] jobs: build: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} + + strategy: + matrix: + os: [ubuntu-latest, macos-latest, windows-latest] steps: - uses: actions/checkout@v4