Skip to content

Commit

Permalink
Exclude tests from CI php version syntax check
Browse files Browse the repository at this point in the history
  • Loading branch information
angusmcleod committed Nov 7, 2023
1 parent b51c0b1 commit 4737ddc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/formatting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

- name: Syntax Check
run: |
find -L . -name '*.php' -not -path "./vendor/*" -print0 | xargs -0 -n 1 -P 4 php -l
find -L . -name '*.php' -not -path "./vendor/*" -not -path "./tests/*" -print0 | xargs -0 -n 1 -P 4 php -l
- name: Install Composer
if: 'matrix.sniff'
Expand Down

0 comments on commit 4737ddc

Please sign in to comment.