From 6bb818b2a9f93701d2e67cb2628ffd9bb00ffaca Mon Sep 17 00:00:00 2001 From: fadrian06 Date: Mon, 22 Jun 2026 10:31:24 -0400 Subject: [PATCH] Update workflow to support multiple OS environments --- .github/workflows/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 90b57ca..74e671e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,8 @@ jobs: fail-fast: false matrix: php: [7.4, 8.0, 8.1, 8.2, 8.3, 8.4, 8.5] - runs-on: ubuntu-latest + os: [ubuntu-latest, windows-latest, macos-latest] + runs-on: ${{ matrix.os }} steps: - name: Checkout repository uses: actions/checkout@v4