Skip to content

Commit ec831bf

Browse files
committed
Fix coverage
1 parent 3e0eca2 commit ec831bf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/php.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
- name: Decide whether to run code coverage or not
6161
if: ${{ matrix.php-versions != '7.4' || matrix.operating-system != 'ubuntu-latest' }}
6262
run: |
63-
echo "NO_COVERAGE=--no-coverage" >> $GITHUB_ENV
63+
echo "NO_COVERAGE=--no-coverage" >> "$GITHUB_ENV"
6464
6565
- name: Run unit tests
6666
run: |

phpunit.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<logging/>
1717
<source>
1818
<include>
19-
<directory suffix=".php">./lib</directory>
19+
<directory suffix=".php">./src</directory>
2020
</include>
2121
</source>
2222
</phpunit>

0 commit comments

Comments
 (0)