Skip to content

Commit 8ee659e

Browse files
committed
Try again
1 parent 8c66c51 commit 8ee659e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/quicktest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
- name: Grab PHPUnit version
5959
id: phpunit_version
6060
# yamllint disable-line rule:line-length
61-
run: echo "VERSION=$("vendor/bin/phpunit" --version | grep --only-matching --max-count=1 --extended-regexp '\b[0-9]+\.[0-9]+')" >> "$GITHUB_OUTPUT"
61+
run: echo "VERSION=$(php "vendor/bin/phpunit" --version | grep --only-matching --max-count=1 --extended-regexp '\b[0-9]+\.[0-9]+')" >> "$GITHUB_OUTPUT"
6262

6363
- name: "DEBUG: Show grabbed version"
6464
run: echo ${{ steps.phpunit_version.outputs.VERSION }}

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ jobs:
200200
- name: Grab PHPUnit version
201201
id: phpunit_version
202202
# yamllint disable-line rule:line-length
203-
run: echo "VERSION=$("vendor/bin/phpunit" --version | grep --only-matching --max-count=1 --extended-regexp '\b[0-9]+\.[0-9]+')" >> "$GITHUB_OUTPUT"
203+
run: echo "VERSION=$(php "vendor/bin/phpunit" --version | grep --only-matching --max-count=1 --extended-regexp '\b[0-9]+\.[0-9]+')" >> "$GITHUB_OUTPUT"
204204

205205
- name: "DEBUG: Show grabbed version"
206206
run: echo ${{ steps.phpunit_version.outputs.VERSION }}
@@ -316,6 +316,7 @@ jobs:
316316

317317
- name: Determine PHPUnit config file to use
318318
id: phpunit_config
319+
shell: bash
319320
run: |
320321
if [ "${{ startsWith( steps.phpunit_version.outputs.VERSION, '11.' ) }}" == "true" ]; then
321322
echo 'FILE=phpunit.xml.dist' >> "$GITHUB_OUTPUT"

0 commit comments

Comments
 (0)