Skip to content

Commit 0aacd98

Browse files
committed
Test A
1 parent 8ee659e commit 0aacd98

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/quicktest.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ jobs:
5757

5858
- name: Grab PHPUnit version
5959
id: phpunit_version
60+
shell: bash
6061
# yamllint disable-line rule:line-length
6162
run: echo "VERSION=$(php "vendor/bin/phpunit" --version | grep --only-matching --max-count=1 --extended-regexp '\b[0-9]+\.[0-9]+')" >> "$GITHUB_OUTPUT"
6263

@@ -65,6 +66,7 @@ jobs:
6566

6667
- name: Determine PHPUnit config file to use
6768
id: phpunit_config
69+
shell: bash
6870
run: |
6971
if [ "${{ startsWith( steps.phpunit_version.outputs.VERSION, '11.' ) }}" == "true" ]; then
7072
echo 'FILE=phpunit.xml.dist' >> "$GITHUB_OUTPUT"

.github/workflows/test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,7 @@ jobs:
199199

200200
- name: Grab PHPUnit version
201201
id: phpunit_version
202+
shell: bash
202203
# yamllint disable-line rule:line-length
203204
run: echo "VERSION=$(php "vendor/bin/phpunit" --version | grep --only-matching --max-count=1 --extended-regexp '\b[0-9]+\.[0-9]+')" >> "$GITHUB_OUTPUT"
204205

@@ -207,6 +208,7 @@ jobs:
207208

208209
- name: Determine PHPUnit config file to use
209210
id: phpunit_config
211+
shell: bash
210212
run: |
211213
if [ "${{ startsWith( steps.phpunit_version.outputs.VERSION, '11.' ) }}" == "true" ]; then
212214
echo 'FILE=phpunit.xml.dist' >> "$GITHUB_OUTPUT"

0 commit comments

Comments
 (0)