File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ name: analyse
3
3
on :
4
4
push :
5
5
pull_request :
6
- branches : [ main ]
7
6
workflow_dispatch :
8
7
9
8
jobs :
18
17
19
18
env :
20
19
COMPOSER_VERSION : 2
21
- COVERAGE_DRIVER : xdebug
20
+ COVERAGE_DRIVER : none
22
21
23
22
steps :
24
23
- name : Checkout code
28
27
uses : shivammathur/setup-php@v2
29
28
with :
30
29
php-version : ${{ matrix.php-version }}
30
+ coverage : ${{ env.COVERAGE_DRIVER }}
31
31
tools : composer:${{ env.COMPOSER_VERSION }}
32
- coverage : none
33
32
34
33
- name : Install dependencies
35
34
run : composer install --no-interaction --prefer-dist --no-progress
Original file line number Diff line number Diff line change 17
17
18
18
env :
19
19
COMPOSER_VERSION : 2
20
+ COVERAGE_DRIVER : none
20
21
21
22
steps :
22
23
- name : Checkout repository
26
27
uses : shivammathur/setup-php@v2
27
28
with :
28
29
php-version : ${{ matrix.php-version }}
30
+ coverage : ${{ env.COVERAGE_DRIVER }}
29
31
tools : composer:${{ env.COMPOSER_VERSION }}
30
- coverage : none
31
32
32
33
- name : Install dependencies
33
34
run : composer install --no-interaction --prefer-dist --no-progress
Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ name: test
3
3
on :
4
4
push :
5
5
pull_request :
6
- branches : [ main ]
7
6
workflow_dispatch :
8
7
9
8
jobs :
75
74
76
75
env :
77
76
COMPOSER_VERSION : 2
77
+ COVERAGE_DRIVER : none
78
78
NEO4J_CONNECTIONS : bolt://neo4j:test@localhost,http://neo4j:test@localhost
79
79
80
80
steps :
85
85
uses : shivammathur/setup-php@v2
86
86
with :
87
87
php-version : ${{ matrix.php-version }}
88
+ coverage : ${{ env.COVERAGE_DRIVER }}
88
89
ini-values : memory_limit=512M
89
90
tools : composer:${{ env.COMPOSER_VERSION }}
90
91
You can’t perform that action at this time.
0 commit comments