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.
2 parents e07be63 + aa1f9bf commit 98401b3Copy full SHA for 98401b3
.github/workflows/build.yaml
@@ -12,6 +12,11 @@ jobs:
12
matrix:
13
php: ['8.1', '8.2', '8.3', '8.4']
14
stability: [prefer-lowest, prefer-stable]
15
+ include:
16
+ - php: '8.4'
17
+ flags: "--ignore-platform-req=php"
18
+ phpunit-flags: '--no-coverage'
19
+ stability: prefer-stable
20
steps:
21
- name: Checkout code
22
uses: actions/checkout@v3
@@ -45,6 +50,11 @@ jobs:
45
50
46
51
- name: Run Unit tests with coverage
47
52
run: composer phpunit -- ${{ matrix.phpunit-flags }}
53
+ if: ${{ matrix.php == '8.3' || matrix.php == '8.2' || matrix.php == '8.1'}}
54
+
55
+ - name: Run Unit tests without coverage
56
+ run: composer phpunit:min
57
+ if: ${{ matrix.php == '8.4'}}
48
58
49
59
- name: Run static analysis
60
run: composer phpstan
0 commit comments