File tree Expand file tree Collapse file tree 2 files changed +6
-9
lines changed Expand file tree Collapse file tree 2 files changed +6
-9
lines changed Original file line number Diff line number Diff line change 9
9
10
10
jobs :
11
11
unit :
12
- name : " Unit and mutation testing"
13
- runs-on : ${{ matrix.os }}
12
+ name : " Unit and mutation testing (PHP ${{ matrix.php-version }}) "
13
+ runs-on : " ubuntu-22.04 "
14
14
continue-on-error : true
15
15
16
16
strategy :
17
17
matrix :
18
- os : [ "ubuntu-latest" ]
19
18
php-version : [ "7.4", "8.0", "8.1" ]
20
19
21
20
env :
@@ -44,17 +43,16 @@ jobs:
44
43
php vendor/bin/coverage-check coverage/clover.xml ${{ env.MINIMUM_COVERAGE_PERCENTAGE }}
45
44
46
45
- name : Run mutation tests
47
- run : XDEBUG_MODE=coverage php vendor/bin/infection --show-mutations --min-msi=${{ env.MINIMUM_MSI_PERCENTAGE }} --threads=4
46
+ run : XDEBUG_MODE=coverage php vendor/bin/infection --show-mutations --min-msi=${{ env.MINIMUM_MSI_PERCENTAGE }} --threads=4 --test-framework-options="--testsuite unit"
48
47
49
48
50
49
integration :
51
- name : " Integration testing"
52
- runs-on : ${{ matrix.os }}
50
+ name : " Integration testing (PHP ${{ matrix.php-version }}, Neo4j ${{ matrix.neo4j-version }}) "
51
+ runs-on : " ubuntu-22.04 "
53
52
continue-on-error : true
54
53
55
54
strategy :
56
55
matrix :
57
- os : [ "ubuntu-latest" ]
58
56
neo4j-version : ["4.2", "4.3", "4.4"]
59
57
php-version : [ "8.1" ]
60
58
@@ -96,13 +94,12 @@ jobs:
96
94
97
95
98
96
lint :
99
- name : " Linting"
97
+ name : " Linting (PHP ${{ matrix.php-version }}) "
100
98
runs-on : ${{ matrix.os }}
101
99
continue-on-error : true
102
100
103
101
strategy :
104
102
matrix :
105
- os : [ "ubuntu-latest" ]
106
103
php-version : [ "8.1" ]
107
104
108
105
env :
You can’t perform that action at this time.
0 commit comments