Skip to content

Dependency review improvements #55

Dependency review improvements

Dependency review improvements #55

Triggered via push December 29, 2024 02:11
Status Success
Total duration 21m 58s
Artifacts 1

ci.yaml

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

Annotations

21 warnings
Coding standard (ubuntu-latest, 8.3)
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
Static analysis (ubuntu-latest, 8.3)
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.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, 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
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
Tests (ubuntu-latest, 8.4, --ignore-platform-req=php+, true)
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.3): src/DI/TracyPetsExtension.php#L27
Escaped Mutant for Mutator "MethodCallRemoval": @@ @@ } public function loadConfiguration(): void { - parent::loadConfiguration(); + self::setupPanel(Debugger::getBlueScreen(), true); } public function beforeCompile(): void
Test for mutants (ubuntu-latest, 8.3): src/DI/TracyPetsExtension.php#L29
Escaped Mutant for Mutator "TrueValue": @@ @@ public function loadConfiguration(): void { parent::loadConfiguration(); - self::setupPanel(Debugger::getBlueScreen(), true); + self::setupPanel(Debugger::getBlueScreen(), false); } public function beforeCompile(): void {
Test for mutants (ubuntu-latest, 8.3): src/DI/TracyPetsExtension.php#L34
Escaped Mutant for Mutator "MethodCallRemoval": @@ @@ } public function beforeCompile(): void { - parent::beforeCompile(); + $builder = $this->getContainerBuilder(); $this->getInitialization()->addBody('?::setupPanel($this->getService(?));', [new Literal(self::class), $builder->getDefinitionByType(BlueScreen::class)->getName()]); }
Test for mutants (ubuntu-latest, 8.3): src/DI/TracyPetsExtension.php#L37
Escaped Mutant for Mutator "MethodCallRemoval": @@ @@ { parent::beforeCompile(); $builder = $this->getContainerBuilder(); - $this->getInitialization()->addBody('?::setupPanel($this->getService(?));', [new Literal(self::class), $builder->getDefinitionByType(BlueScreen::class)->getName()]); + } public static function setupPanel(BlueScreen $blueScreen, bool $renderOnceCheck = false): void {
Test for mutants (ubuntu-latest, 8.3): src/DI/TracyPetsExtension.php#L43
Escaped Mutant for Mutator "FalseValue": @@ @@ $builder = $this->getContainerBuilder(); $this->getInitialization()->addBody('?::setupPanel($this->getService(?));', [new Literal(self::class), $builder->getDefinitionByType(BlueScreen::class)->getName()]); } - public static function setupPanel(BlueScreen $blueScreen, bool $renderOnceCheck = false): void + public static function setupPanel(BlueScreen $blueScreen, bool $renderOnceCheck = true): void { $blueScreen->addPanel(new TracyPetsPanel($renderOnceCheck)); } }
Test for mutants (ubuntu-latest, 8.3): src/DI/TracyPetsExtension.php#L45
Escaped Mutant for Mutator "MethodCallRemoval": @@ @@ } public static function setupPanel(BlueScreen $blueScreen, bool $renderOnceCheck = false): void { - $blueScreen->addPanel(new TracyPetsPanel($renderOnceCheck)); + } }
Test for mutants (ubuntu-latest, 8.3): src/Tracy/TracyPetsPanel.php#L68
Escaped Mutant for Mutator "ArrayItemRemoval": @@ @@ } self::$isRendered = true; } - return ['tab' => 'Test', 'panel' => Helpers::capture(function (): void { + return ['panel' => Helpers::capture(function (): void { // phpcs:disable SlevomatCodingStandard.Variables.UnusedVariable $message = $this->texts[array_rand($this->texts)]; $message = addcslashes($message, "\x00..\x1f!\"#\$%&'()*+,./:;<=>?@[\\]^`{|}~");
Test for mutants (ubuntu-latest, 8.3): src/Tracy/TracyPetsPanel.php#L75
Escaped Mutant for Mutator "Concat": @@ @@ // phpcs:disable SlevomatCodingStandard.Variables.UnusedVariable $message = $this->texts[array_rand($this->texts)]; $message = addcslashes($message, "\x00..\x1f!\"#\$%&'()*+,./:;<=>?@[\\]^`{|}~"); - $bubble = 'data:image/svg+xml;base64,' . base64_encode(file_get_contents(__DIR__ . '/bubble.svg')); + $bubble = base64_encode(file_get_contents(__DIR__ . '/bubble.svg')) . 'data:image/svg+xml;base64,'; $pet = 'data:image/png;base64,' . base64_encode(file_get_contents($this->images[array_rand($this->images)])); // phpcs:enable SlevomatCodingStandard.Variables.UnusedVariable require __DIR__ . '/TracyPets.panel.phtml';
Test for mutants (ubuntu-latest, 8.3): src/Tracy/TracyPetsPanel.php#L75
Escaped Mutant for Mutator "ConcatOperandRemoval": @@ @@ // phpcs:disable SlevomatCodingStandard.Variables.UnusedVariable $message = $this->texts[array_rand($this->texts)]; $message = addcslashes($message, "\x00..\x1f!\"#\$%&'()*+,./:;<=>?@[\\]^`{|}~"); - $bubble = 'data:image/svg+xml;base64,' . base64_encode(file_get_contents(__DIR__ . '/bubble.svg')); + $bubble = base64_encode(file_get_contents(__DIR__ . '/bubble.svg')); $pet = 'data:image/png;base64,' . base64_encode(file_get_contents($this->images[array_rand($this->images)])); // phpcs:enable SlevomatCodingStandard.Variables.UnusedVariable require __DIR__ . '/TracyPets.panel.phtml';
Test for mutants (ubuntu-latest, 8.3): src/Tracy/TracyPetsPanel.php#L75
Escaped Mutant for Mutator "ConcatOperandRemoval": @@ @@ // phpcs:disable SlevomatCodingStandard.Variables.UnusedVariable $message = $this->texts[array_rand($this->texts)]; $message = addcslashes($message, "\x00..\x1f!\"#\$%&'()*+,./:;<=>?@[\\]^`{|}~"); - $bubble = 'data:image/svg+xml;base64,' . base64_encode(file_get_contents(__DIR__ . '/bubble.svg')); + $bubble = 'data:image/svg+xml;base64,'; $pet = 'data:image/png;base64,' . base64_encode(file_get_contents($this->images[array_rand($this->images)])); // phpcs:enable SlevomatCodingStandard.Variables.UnusedVariable require __DIR__ . '/TracyPets.panel.phtml';
Code coverage finish (ubuntu-latest, 8.3)
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

Artifacts

Produced during runtime
Name Size
Logs - Mutations
1.17 KB