We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 211a219 commit 39b3e18Copy full SHA for 39b3e18
.github/workflows/test.yml
@@ -4,13 +4,14 @@ on: [push, pull_request]
4
5
jobs:
6
run:
7
- name: PHP ${{ matrix.php-versions }}
8
- runs-on: ubuntu-latest
+ name: PHP ${{ matrix.php-versions }} ${{ matrix.os }}
+ runs-on: ${{ matrix.os }}
9
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
10
11
strategy:
12
matrix:
13
php-versions: ['7.2', '7.3', '7.4', '8.0']
14
+ os: ['ubuntu-latest', 'windows-latest']
15
fail-fast: false
16
17
steps:
@@ -21,6 +22,7 @@ jobs:
21
22
uses: shivammathur/setup-php@v2
23
with:
24
php-version: ${{ matrix.php-versions }}
25
+ extensions: bz2, zip
26
27
- name: Setup problem matchers
28
run: |
0 commit comments