Use bash instead of sh

This commit is contained in:
vedanshujain 2021-02-09 16:15:48 +05:30
parent 3e0fc5e89b
commit 8963755442
2 changed files with 2 additions and 2 deletions

View File

@ -47,5 +47,5 @@ jobs:
- name: Run unit tests with code coverage. Allow to fail.
run: |
RUN_CODE_COVERAGE=1 sh ./tests/bin/phpunit.sh
RUN_CODE_COVERAGE=1 bash ./tests/bin/phpunit.sh
exit 0

View File

@ -46,4 +46,4 @@ jobs:
run: ./tests/bin/install.sh woo_test root root 127.0.0.1 latest
- name: Run code sniff
run: RUN_PHPCS=1 sh ./tests/bin/phpcs.sh
run: RUN_PHPCS=1 bash ./tests/bin/phpcs.sh