Skip to content

Commit 010ed07

Browse files
committed
exclude vendor from PHP linting. fixes #7
1 parent d6acb65 commit 010ed07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
5858
- name: Check Syntax
5959
run: |
60-
find ${{ steps.dokuwiki-env.outputs.dir }} -name '*.php' -print0 | xargs -0L1 php -l
60+
find ${{ steps.dokuwiki-env.outputs.dir }} -name '*.php' -not -path '*/vendor/*' -print0 | xargs -0L1 php -l
6161
6262
- name: Run PHPUnit
6363
run: |

0 commit comments

Comments
 (0)