Merge remote-tracking branch 'origin/main' into feat/craft

This commit is contained in:
DubbleClick
2025-04-28 10:58:11 +07:00
7 changed files with 69 additions and 22 deletions

View File

@@ -13,23 +13,23 @@ declare(strict_types=1);
// test php version (8.1 ~ 8.4 available, multiple for matrix)
$test_php_version = [
// '8.1',
// '8.2',
// '8.3',
'8.1',
'8.2',
'8.3',
'8.4',
];
// test os (macos-13, macos-14, macos-15, ubuntu-latest, windows-latest are available)
$test_os = [
// 'macos-13',
'macos-14',
'macos-15',
// 'macos-14',
// 'macos-15',
// 'ubuntu-latest',
// 'ubuntu-22.04',
// 'ubuntu-24.04',
// 'ubuntu-22.04-arm',
// 'ubuntu-24.04-arm',
// 'windows-latest',
'windows-latest',
];
// whether enable thread safe
@@ -46,7 +46,7 @@ $prefer_pre_built = false;
// If you want to test your added extensions and libs, add below (comma separated, example `bcmath,openssl`).
$extensions = match (PHP_OS_FAMILY) {
'Linux', 'Darwin' => 'pgsql',
'Windows' => 'ev',
'Windows' => 'xlswriter',
};
// If you want to test shared extensions, add them below (comma separated, example `bcmath,openssl`).