mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Fix don't run phpstan in test actions (#13470)
This commit is contained in:
@@ -432,7 +432,7 @@ class CiHelper
|
||||
|
||||
$this->setFlags([
|
||||
'lint_skip_php' => empty($this->changed['php']),
|
||||
'lint_skip_phpstan' => empty($this->changed['php']),
|
||||
'lint_skip_phpstan' => $this->flags['ci'] || empty($this->changed['php']),
|
||||
'lint_skip_python' => empty($this->changed['python']),
|
||||
'lint_skip_bash' => empty($this->changed['bash']),
|
||||
'unit_os' => $this->getFlag('unit_os') || (! empty($this->changed['os']) && empty(array_diff($this->changed['php'], $this->changed['os-files']))),
|
||||
|
Reference in New Issue
Block a user