Compare commits

...

4 Commits

Author SHA1 Message Date
Eduardo Gulias Davis c9be65c290 Different strategy 2024-12-31 16:22:03 +01:00
Eduardo Gulias Davis d164dab97f Polish 2024-12-31 16:18:02 +01:00
Eduardo Gulias Davis e67aa7abef Use different action 2024-12-31 16:02:17 +01:00
Eduardo Gulias Davis d3a88ef157 coverage path 2024-12-31 15:47:39 +01:00
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -20,8 +20,9 @@ jobs:
run: mkdir -p build/coverage
- name: Download clover.xml artifact
uses: actions/download-artifact@v3
uses: dawidd6/action-download-artifact@v7
with:
workflow: unit-tests
name: clover.xml
path: build/coverage
+1 -1
View File
@@ -15,7 +15,7 @@ class DNSGetRecordWrapper
// A workaround to fix https://bugs.php.net/bug.php?id=73149
set_error_handler(
static function (int $errorLevel, string $errorMessage): never {
throw new \RuntimeException("Unable to get DNS record for the host: $errorMessage");
throw new \RuntimeException(sprintf('Unable to get DNS record for the host: %s', $errorMessage));
}
);
try {