File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 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
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"
Original file line number Diff line number Diff 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"
You can’t perform that action at this time.
0 commit comments