diff --git a/Jenkinsfile b/Jenkinsfile index 345b7daa..73fb4286 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -38,8 +38,8 @@ pipeline { agent any steps { sh "php8 ./vendor/bin/phpstan analyse -c phpstan.neon -n --no-ansi --no-progress --error-format=checkstyle | awk '{\$1=\$1;print}' > build/logs/checkstyle.xml" - // recordIssues(tools: [checkStyle(reportEncoding: 'UTF-8')]) - checkStyle 'build/logs/checkstyle.xml' + recordIssues(tools: [checkStyle(reportEncoding: 'UTF-8')]) + // checkStyle 'build/logs/checkstyle.xml' } } stage('Coverage') {