Skip to content

Commit 39b3e18

Browse files
committed
run tests on windows too
1 parent 211a219 commit 39b3e18

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,14 @@ on: [push, pull_request]
44

55
jobs:
66
run:
7-
name: PHP ${{ matrix.php-versions }}
8-
runs-on: ubuntu-latest
7+
name: PHP ${{ matrix.php-versions }} ${{ matrix.os }}
8+
runs-on: ${{ matrix.os }}
99
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
1010

1111
strategy:
1212
matrix:
1313
php-versions: ['7.2', '7.3', '7.4', '8.0']
14+
os: ['ubuntu-latest', 'windows-latest']
1415
fail-fast: false
1516

1617
steps:
@@ -21,6 +22,7 @@ jobs:
2122
uses: shivammathur/setup-php@v2
2223
with:
2324
php-version: ${{ matrix.php-versions }}
25+
extensions: bz2, zip
2426

2527
- name: Setup problem matchers
2628
run: |

0 commit comments

Comments
 (0)