Skip to content

ci: add actionlint and update docs #47

ci: add actionlint and update docs

ci: add actionlint and update docs #47

Triggered via pull request April 17, 2024 00:15
Status Success
Total duration 1m 22s
Artifacts

integrate.yml

on: pull_request
commit-linting
14s
commit-linting
Matrix: code-coverage
Matrix: coding-standards
Matrix: dependency-analysis
Matrix: mutation-testing
Matrix: refactoring
Matrix: security-analysis
Matrix: static-analysis
Matrix: testing
Fit to window
Zoom out
Zoom in

Annotations

10 warnings
mutation-testing (ubuntu-latest, 8.2, locked): src/Bridge/Laravel/Providers/PackageServiceProvider.php#L14
Escaped Mutant for Mutator "IfNegation": --- Original +++ New @@ @@ { public function boot(): void { - if ($this->app->runningInConsole()) { + if (!$this->app->runningInConsole()) { $this->publishes([Config::path() . Config::fileName() => config_path(Config::fileName())], 'config'); $this->registerConsoleCommands(); }
mutation-testing (ubuntu-latest, 8.2, locked): src/Bridge/Laravel/Providers/PackageServiceProvider.php#L15
Escaped Mutant for Mutator "ArrayItemRemoval": --- Original +++ New @@ @@ public function boot(): void { if ($this->app->runningInConsole()) { - $this->publishes([Config::path() . Config::fileName() => config_path(Config::fileName())], 'config'); + $this->publishes([], 'config'); $this->registerConsoleCommands(); } }
mutation-testing (ubuntu-latest, 8.2, locked): src/Bridge/Laravel/Providers/PackageServiceProvider.php#L15
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ public function boot(): void { if ($this->app->runningInConsole()) { - $this->publishes([Config::path() . Config::fileName() => config_path(Config::fileName())], 'config'); + $this->registerConsoleCommands(); } }
mutation-testing (ubuntu-latest, 8.2, locked): src/Bridge/Laravel/Providers/PackageServiceProvider.php#L16
Escaped Mutant for Mutator "Concat": --- Original +++ New @@ @@ public function boot(): void { if ($this->app->runningInConsole()) { - $this->publishes([Config::path() . Config::fileName() => config_path(Config::fileName())], 'config'); + $this->publishes([Config::fileName() . Config::path() => config_path(Config::fileName())], 'config'); $this->registerConsoleCommands(); } }
mutation-testing (ubuntu-latest, 8.2, locked): src/Bridge/Laravel/Providers/PackageServiceProvider.php#L16
Escaped Mutant for Mutator "ConcatOperandRemoval": --- Original +++ New @@ @@ public function boot(): void { if ($this->app->runningInConsole()) { - $this->publishes([Config::path() . Config::fileName() => config_path(Config::fileName())], 'config'); + $this->publishes([Config::fileName() => config_path(Config::fileName())], 'config'); $this->registerConsoleCommands(); } }
mutation-testing (ubuntu-latest, 8.2, locked): src/Bridge/Laravel/Providers/PackageServiceProvider.php#L16
Escaped Mutant for Mutator "ArrayItem": --- Original +++ New @@ @@ public function boot(): void { if ($this->app->runningInConsole()) { - $this->publishes([Config::path() . Config::fileName() => config_path(Config::fileName())], 'config'); + $this->publishes([Config::path() . Config::fileName() > config_path(Config::fileName())], 'config'); $this->registerConsoleCommands(); } }
mutation-testing (ubuntu-latest, 8.2, locked): src/Bridge/Laravel/Providers/PackageServiceProvider.php#L19
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ { if ($this->app->runningInConsole()) { $this->publishes([Config::path() . Config::fileName() => config_path(Config::fileName())], 'config'); - $this->registerConsoleCommands(); + } } public function register(): void
mutation-testing (ubuntu-latest, 8.2, locked): src/Bridge/Laravel/Providers/PackageServiceProvider.php#L26
Escaped Mutant for Mutator "LogicalNot": --- Original +++ New @@ @@ public function register(): void { // @phpstan-ignore-next-line - if (!$this->app->configurationIsCached()) { + if ($this->app->configurationIsCached()) { $this->mergeConfigFrom(Config::path() . Config::fileName(), Config::key()); } }
mutation-testing (ubuntu-latest, 8.2, locked): src/Bridge/Laravel/Providers/PackageServiceProvider.php#L27
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ { // @phpstan-ignore-next-line if (!$this->app->configurationIsCached()) { - $this->mergeConfigFrom(Config::path() . Config::fileName(), Config::key()); + } } private function registerConsoleCommands(): void
mutation-testing (ubuntu-latest, 8.2, locked): src/Bridge/Laravel/Providers/PackageServiceProvider.php#L36
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ } private function registerConsoleCommands(): void { - $this->commands([]); + } }