Commit fbe4361 1 parent 8f711c3 commit fbe4361 Copy full SHA for fbe4361
File tree 1 file changed +12
-2
lines changed
1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change 12
12
matrix :
13
13
php : ['8.1', '8.2', '8.3']
14
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
15
20
steps :
16
21
- name : Checkout code
17
22
uses : actions/checkout@v3
@@ -45,11 +50,16 @@ 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
50
60
run : composer phpstan
51
- if : ${{ matrix.php == '8.2 ' && matrix.stability == 'prefer-stable'}}
61
+ if : ${{ matrix.php == '8.3 ' && matrix.stability == 'prefer-stable'}}
52
62
53
63
- name : Run Coding style rules
54
64
run : composer phpcs:fix
55
- if : ${{ matrix.php == '8.2 ' && matrix.stability == 'prefer-stable'}}
65
+ if : ${{ matrix.php == '8.3 ' && matrix.stability == 'prefer-stable'}}
You can’t perform that action at this time.
0 commit comments