From 4f063fac806eda9a290ddeb972b0baf8e5cc9b29 Mon Sep 17 00:00:00 2001 From: crazywhalecc Date: Thu, 6 Feb 2025 11:38:19 +0800 Subject: [PATCH] Add tests --- src/globals/test-extensions.php | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/globals/test-extensions.php b/src/globals/test-extensions.php index 388f002f..dde3d7e9 100644 --- a/src/globals/test-extensions.php +++ b/src/globals/test-extensions.php @@ -13,17 +13,18 @@ declare(strict_types=1); // test php version $test_php_version = [ - // '8.1', - // '8.2', - // '8.3', + '8.1', + '8.2', + '8.3', '8.4', ]; // test os (macos-13, macos-14, ubuntu-latest, windows-latest are available) $test_os = [ + 'macos-13', 'macos-14', 'ubuntu-latest', - // 'windows-latest', + 'windows-latest', ]; // whether enable thread safe @@ -39,8 +40,8 @@ $prefer_pre_built = true; // If you want to test your added extensions and libs, add below (comma separated, example `bcmath,openssl`). $extensions = match (PHP_OS_FAMILY) { - 'Linux', 'Darwin' => 'dio', - 'Windows' => 'dio', + 'Linux', 'Darwin' => 'opentelemetry', + 'Windows' => 'opentelemetry', }; // If you want to test lib-suggests feature with extension, add them below (comma separated, example `libwebp,libavif`).