Skip to content

CI

CI #264

Triggered via schedule January 20, 2025 08:18
Status Success
Total duration 9m 24s
Artifacts 1

ci.yaml

on: schedule
Matrix: Tests
Matrix: Coding standard
Matrix: Static analysis
Matrix: Test for mutants
Matrix: Code coverage finish
Status check - CI
2s
Status check - CI
Fit to window
Zoom out
Zoom in

Annotations

21 warnings
Coding standard (ubuntu-latest, 8.4)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Static analysis (ubuntu-latest, 8.4)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Tests (ubuntu-latest, 8.0, false)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Tests (ubuntu-latest, 7.4, false)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Tests (ubuntu-latest, 7.4, --prefer-lowest --prefer-stable, false)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Tests (ubuntu-latest, 8.1, false)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Tests (ubuntu-latest, 8.3, false)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Test for mutants (ubuntu-latest, 8.4): src/Boot/BaseConfigurator.php#L119
Escaped Mutant for Mutator "DecrementInteger": @@ @@ if (!Dependencies::isPackageLoaded('tracy/tracy')) { throw PackageRequired::forMethod(['tracy/tracy'], static::class, __FUNCTION__); } - @mkdir($this->staticParameters['logDir'], 0777, true); + @mkdir($this->staticParameters['logDir'], 510, true); Debugger::$strictMode = true; Debugger::enable($this->isDebugMode() ? Debugger::DEVELOPMENT : Debugger::PRODUCTION, $this->staticParameters['logDir']); /** @infection-ignore-all */
Test for mutants (ubuntu-latest, 8.4): src/Boot/BaseConfigurator.php#L119
Escaped Mutant for Mutator "IncrementInteger": @@ @@ if (!Dependencies::isPackageLoaded('tracy/tracy')) { throw PackageRequired::forMethod(['tracy/tracy'], static::class, __FUNCTION__); } - @mkdir($this->staticParameters['logDir'], 0777, true); + @mkdir($this->staticParameters['logDir'], 512, true); Debugger::$strictMode = true; Debugger::enable($this->isDebugMode() ? Debugger::DEVELOPMENT : Debugger::PRODUCTION, $this->staticParameters['logDir']); /** @infection-ignore-all */
Tests (ubuntu-latest, 8.2, false)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Test for mutants (ubuntu-latest, 8.4): src/Boot/BaseConfigurator.php#L179
Escaped Mutant for Mutator "MethodCallRemoval": @@ @@ private function generateContainer(Compiler $compiler, array $configFiles): void { $loader = new Loader(); - $loader->setParameters($this->staticParameters); + foreach ($this->configAdapters as $extension => $adapter) { $loader->addAdapter($extension, $adapter); }
Test for mutants (ubuntu-latest, 8.4): src/Boot/BaseConfigurator.php#L200
Escaped Mutant for Mutator "UnwrapArrayKeys": @@ @@ $now = new DateTimeImmutable(); $parameters = DIHelpers::escape($this->staticParameters) + ['container' => ['compiledAtTimestamp' => (int) $now->format('U'), 'compiledAt' => $now->format(DATE_ATOM), 'className' => new Literal('static::class')]]; $compiler->addConfig(['parameters' => $parameters]); - $compiler->setDynamicParameterNames(array_keys($this->dynamicParameters)); + $compiler->setDynamicParameterNames($this->dynamicParameters); $builder = $compiler->getContainerBuilder(); $builder->addExcludedClasses($this->autowireExcludedClasses); $compiler->addExtension('extensions', new ExtensionsExtension());
Test for mutants (ubuntu-latest, 8.4): src/Boot/BaseConfigurator.php#L200
Escaped Mutant for Mutator "MethodCallRemoval": @@ @@ $now = new DateTimeImmutable(); $parameters = DIHelpers::escape($this->staticParameters) + ['container' => ['compiledAtTimestamp' => (int) $now->format('U'), 'compiledAt' => $now->format(DATE_ATOM), 'className' => new Literal('static::class')]]; $compiler->addConfig(['parameters' => $parameters]); - $compiler->setDynamicParameterNames(array_keys($this->dynamicParameters)); + $builder = $compiler->getContainerBuilder(); $builder->addExcludedClasses($this->autowireExcludedClasses); $compiler->addExtension('extensions', new ExtensionsExtension());
Test for mutants (ubuntu-latest, 8.4): src/Boot/BaseConfigurator.php#L239
Escaped Mutant for Mutator "MethodCallRemoval": @@ @@ $loader = new ContainerLoader($buildDir, $this->staticParameters['debugMode']); $configFiles = $this->loadConfigFiles(); $containerKey = $this->getContainerKey($configFiles); - $this->reloadContainerOnDemand($loader, $containerKey, $buildDir); + $containerClass = $loader->load(fn(Compiler $compiler) => $this->generateContainer($compiler, $configFiles), $containerKey); assert(is_subclass_of($containerClass, Container::class)); return $containerClass;
Test for mutants (ubuntu-latest, 8.4): src/Boot/BaseConfigurator.php#L291
Escaped Mutant for Mutator "LogicalAndAllSubExprNegation": @@ @@ */ private function reloadContainerOnDemand(ContainerLoader $loader, array $containerKey, string $buildDir): void { - $this->forceReloadContainer && !class_exists($containerClass = $loader->getClassName($containerKey), false) && is_file($file = "{$buildDir}/{$containerClass}.php") && @Unlink($file); + !$this->forceReloadContainer && class_exists($containerClass = $loader->getClassName($containerKey), false) && !is_file($file = "{$buildDir}/{$containerClass}.php") && !@Unlink($file); } }
Test for mutants (ubuntu-latest, 8.4): src/Boot/BaseConfigurator.php#L291
Escaped Mutant for Mutator "LogicalAndSingleSubExprNegation": @@ @@ */ private function reloadContainerOnDemand(ContainerLoader $loader, array $containerKey, string $buildDir): void { - $this->forceReloadContainer && !class_exists($containerClass = $loader->getClassName($containerKey), false) && is_file($file = "{$buildDir}/{$containerClass}.php") && @Unlink($file); + $this->forceReloadContainer && !class_exists($containerClass = $loader->getClassName($containerKey), false) && !is_file($file = "{$buildDir}/{$containerClass}.php") && @Unlink($file); } }
Test for mutants (ubuntu-latest, 8.4): src/Boot/BaseConfigurator.php#L291
Escaped Mutant for Mutator "LogicalAndNegation": @@ @@ */ private function reloadContainerOnDemand(ContainerLoader $loader, array $containerKey, string $buildDir): void { - $this->forceReloadContainer && !class_exists($containerClass = $loader->getClassName($containerKey), false) && is_file($file = "{$buildDir}/{$containerClass}.php") && @Unlink($file); + !($this->forceReloadContainer && !class_exists($containerClass = $loader->getClassName($containerKey), false) && is_file($file = "{$buildDir}/{$containerClass}.php") && @Unlink($file)); } }
Test for mutants (ubuntu-latest, 8.4): src/Boot/BaseConfigurator.php#L292
Escaped Mutant for Mutator "FalseValue": @@ @@ */ private function reloadContainerOnDemand(ContainerLoader $loader, array $containerKey, string $buildDir): void { - $this->forceReloadContainer && !class_exists($containerClass = $loader->getClassName($containerKey), false) && is_file($file = "{$buildDir}/{$containerClass}.php") && @Unlink($file); + $this->forceReloadContainer && !class_exists($containerClass = $loader->getClassName($containerKey), true) && is_file($file = "{$buildDir}/{$containerClass}.php") && @Unlink($file); } }
Tests (ubuntu-latest, 8.4, false)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Status check - CI
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Code coverage finish (ubuntu-latest, 8.4)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636

Artifacts

Produced during runtime
Name Size
Logs - Mutations
2.27 KB