From 5436ff8c4957bf5dff3e6f4a8f26df25c36d7c2a Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Sun, 8 Jan 2023 23:16:42 +0000 Subject: [PATCH] chore: run tests on windows --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6f740f20..e8733b0f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -7,7 +7,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, macos-latest] # (windows-latest) 2.x-dev is under development + os: [ubuntu-latest, macos-latest, windows-latest] php: ['8.1', '8.2'] dependency-version: [prefer-lowest, prefer-stable] parallel: ['', '--parallel'] @@ -38,7 +38,7 @@ jobs: - name: Unit Tests run: test:parallel - if: ${{ false }} # 2.x-dev is under development + if: ${{ false }} # Parallel's not yet supported. - name: Integration Tests run: composer test:integration