Skip to content

Commit 0458169

Browse files
Minor fixes to workflows
1 parent 990433c commit 0458169

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/analyse.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ name: analyse
33
on:
44
push:
55
pull_request:
6-
branches: [ main ]
76
workflow_dispatch:
87

98
jobs:
@@ -18,7 +17,7 @@ jobs:
1817

1918
env:
2019
COMPOSER_VERSION: 2
21-
COVERAGE_DRIVER: xdebug
20+
COVERAGE_DRIVER: none
2221

2322
steps:
2423
- name: Checkout code
@@ -28,8 +27,8 @@ jobs:
2827
uses: shivammathur/setup-php@v2
2928
with:
3029
php-version: ${{ matrix.php-version }}
30+
coverage: ${{ env.COVERAGE_DRIVER }}
3131
tools: composer:${{ env.COMPOSER_VERSION }}
32-
coverage: none
3332

3433
- name: Install dependencies
3534
run: composer install --no-interaction --prefer-dist --no-progress

.github/workflows/lint.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717

1818
env:
1919
COMPOSER_VERSION: 2
20+
COVERAGE_DRIVER: none
2021

2122
steps:
2223
- name: Checkout repository
@@ -26,8 +27,8 @@ jobs:
2627
uses: shivammathur/setup-php@v2
2728
with:
2829
php-version: ${{ matrix.php-version }}
30+
coverage: ${{ env.COVERAGE_DRIVER }}
2931
tools: composer:${{ env.COMPOSER_VERSION }}
30-
coverage: none
3132

3233
- name: Install dependencies
3334
run: composer install --no-interaction --prefer-dist --no-progress

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ name: test
33
on:
44
push:
55
pull_request:
6-
branches: [ main ]
76
workflow_dispatch:
87

98
jobs:
@@ -75,6 +74,7 @@ jobs:
7574
7675
env:
7776
COMPOSER_VERSION: 2
77+
COVERAGE_DRIVER: none
7878
NEO4J_CONNECTIONS: bolt://neo4j:test@localhost,http://neo4j:test@localhost
7979

8080
steps:
@@ -85,6 +85,7 @@ jobs:
8585
uses: shivammathur/setup-php@v2
8686
with:
8787
php-version: ${{ matrix.php-version }}
88+
coverage: ${{ env.COVERAGE_DRIVER }}
8889
ini-values: memory_limit=512M
8990
tools: composer:${{ env.COMPOSER_VERSION }}
9091

0 commit comments

Comments
 (0)