Skip to content

Commit b75cb5b

Browse files
committed
further cleanup
1 parent fc9bf7b commit b75cb5b

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

.github/workflows/integration-test-cluster-neo4j-4.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@ jobs:
2424
uses: actions/cache@v2
2525
with:
2626
path: /tmp/composer-cache
27-
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
27+
key: ${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('**/composer.lock') }}
2828
- uses: php-actions/composer@v6
2929
with:
3030
progress: yes
31-
php_version: 8.0
31+
php_version: ${{ matrix.php-version }}
3232
version: 2
3333
- uses: php-actions/phpunit@v3
3434
with:
3535
configuration: phpunit.xml.dist
36-
php_version: 8.0
36+
php_version: ${{ matrix.php-version }}
3737
memory_limit: 1024M
3838
bootstrap: vendor/autoload.php
3939

.github/workflows/unit-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
uses: actions/cache@v2
2222
with:
2323
path: /tmp/composer-cache
24-
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
24+
key: ${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('**/composer.lock') }}
2525
- uses: php-actions/composer@v6
2626
with:
2727
progress: yes

phpunit.xml.dist

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
<phpunit colors="true" verbose="true"
22
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
4-
convertNoticesToExceptions="true"
5-
convertWarningsToExceptions="true"
6-
convertErrorsToExceptions="true"
74
convertDeprecationsToExceptions="true"
85
>
96
<testsuites>

0 commit comments

Comments
 (0)