Skip to content

Commit 8c66c51

Browse files
committed
Testing 1-2-3
1 parent 15e2696 commit 8c66c51

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-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=$("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: 1 addition & 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=$("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 }}

0 commit comments

Comments
 (0)