Skip to content

Commit 98401b3

Browse files
authored
Merge branch 'master' into develop
2 parents e07be63 + aa1f9bf commit 98401b3

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/build.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ jobs:
1212
matrix:
1313
php: ['8.1', '8.2', '8.3', '8.4']
1414
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
1520
steps:
1621
- name: Checkout code
1722
uses: actions/checkout@v3
@@ -45,6 +50,11 @@ jobs:
4550

4651
- name: Run Unit tests with coverage
4752
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'}}
4858

4959
- name: Run static analysis
5060
run: composer phpstan

0 commit comments

Comments
 (0)