Skip to content

Commit 8b3f928

Browse files
authored
Detect PHP deprecations with PHP Parallel Lint
1 parent c7df5b1 commit 8b3f928

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,9 @@ jobs:
9999
run: |
100100
echo -e "\033[0;33mExecuting PHP Parallel Lint...\033[0m"
101101
if [[ -f "vendor/bin/parallel-lint" ]]; then
102-
vendor/bin/parallel-lint --colors --exclude ./lib/ --exclude ./node_modules/ --exclude ./vendor/ --no-progress .
102+
vendor/bin/parallel-lint --show-deprecated --colors --exclude ./lib/ --exclude ./node_modules/ --exclude ./vendor/ --no-progress .
103103
elif [[ -f "../../vendor/bin/parallel-lint" ]]; then
104-
../../vendor/bin/parallel-lint --colors --exclude ./lib/ --exclude ./node_modules/ --exclude ./vendor/ --no-progress .
104+
../../vendor/bin/parallel-lint --show-deprecated --colors --exclude ./lib/ --exclude ./node_modules/ --exclude ./vendor/ --no-progress .
105105
else
106106
echo -e "\033[0;31mPHP Parallel Lint binary not found!\033[0m"
107107
exit 1

0 commit comments

Comments
 (0)