We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5b73b3 commit fb9199eCopy full SHA for fb9199e
.github/workflows/php.yml
@@ -9,10 +9,10 @@ on:
9
jobs:
10
phpunit:
11
name: Tests
12
- runs-on: ubuntu-latest
13
strategy:
14
fail-fast: false
15
matrix:
+ os: [ubuntu-latest]
16
php:
17
- "7.1"
18
- "7.2"
@@ -23,6 +23,15 @@ jobs:
23
- "lowest"
24
- "highest"
25
symfony-yaml: ['^3.4', '^4', '^5']
26
+ include:
27
+ - os: "windows-latest"
28
+ php-version: "8.0"
29
+ dependencies: "highest"
30
+ symfony-yaml: '^5'
31
+ - os: "macos-latest"
32
33
34
35
exclude:
36
# symfony/yaml v5 does not run on PHP 7.1
37
- php: '7.1'
@@ -31,6 +40,7 @@ jobs:
40
- php: '8.0'
41
symfony-yaml: '^3.4'
42
43
+ runs-on: ${{ matrix.os }}
44
env:
45
SYMFONY_YAML: ${{ matrix.symfony-yaml }}
46
0 commit comments