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

Skip linting on php8

This commit is contained in:
Jordi Boggiano
2020-05-22 10:09:24 +02:00
parent ed3d51a965
commit 977e91b783
2 changed files with 6 additions and 2 deletions

View File

@@ -33,4 +33,6 @@ before_script:
- if [ "$deps" == "low" ]; then composer update -n --prefer-dist --prefer-lowest --prefer-stable $COMPOSER_ARGS; fi
- if [ "$deps" != "low" ]; then composer update -n --prefer-dist $COMPOSER_ARGS; fi
script: composer test
script:
- if [ "`phpenv version-name`" != "nightly" ]; then composer lint; fi
- composer test

View File

@@ -60,8 +60,10 @@
}
},
"scripts": {
"lint": [
"parallel-lint . --exclude vendor"
],
"test": [
"parallel-lint . --exclude vendor",
"phpunit"
]
},