Skip to content

Commit 31985f0

Browse files
committed
use ${{ false }} instead of never()
@desrosj `never()` seems to cause a lot if issues, so I changed it to `${{ false }}`. See: https://github.com/WordPress/phpunit-test-runner/actions
1 parent 9957fe4 commit 31985f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
runs-on: ubuntu-latest
4545

4646
# Remove this line if Github Actions is your preferred means of running the tests.
47-
if: never()
47+
if: ${{ false }}
4848

4949
env:
5050
# This is only a subset/example of env vars available. See the `.env.default` file for a full list.

0 commit comments

Comments
 (0)