1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-11 23:54:04 +02:00

Fix lint task

This commit is contained in:
Jordi Boggiano
2020-12-09 13:54:14 +01:00
parent 279cf6a900
commit d3f4f48f0f

View File

@@ -30,7 +30,7 @@ jobs:
- name: "Lint PHP files on 5.3"
if: "matrix.php-version == '5.3'"
run: "find src/ -type f -name '*.php' -exclude '*Trait.php' -print0 | xargs -0 -L1 -P4 -- php -l -f"
run: "find src/ -type f -name '*.php' -not -name '*Trait.php' -print0 | xargs -0 -L1 -P4 -- php -l -f"
- name: "Lint PHP files"
if: "matrix.php-version != '5.3'"