From 786cc36ffb442a8a47a16760ddd3104720036a85 Mon Sep 17 00:00:00 2001 From: Yury Bayda Date: Mon, 28 Apr 2025 22:46:49 -0700 Subject: [PATCH] Test on all OSes --- .github/workflows/main.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2830430..3deaba7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -25,7 +25,10 @@ jobs: run: make format-check test: - runs-on: ubuntu-latest + strategy: + matrix: + os: [ubuntu-latest, windows-latest, macos-latest] + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4