1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-01 19:00:20 +02:00

Avoid linting file which is problematic on php 7.2

This commit is contained in:
Jordi Boggiano
2022-03-06 13:08:08 +01:00
parent fb2c324c17
commit 4b34c2893f

View File

@@ -29,4 +29,4 @@ jobs:
php-version: "${{ matrix.php-version }}"
- name: "Lint PHP files"
run: "find src/ -type f -name '*.php' -print0 | xargs -0 -L1 -P4 -- php -l -f"
run: "find src/ -type f -name '*.php' -not -name AsMonologProcessor.php -print0 | xargs -0 -L1 -P4 -- php -l -f"