mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 14:17:22 +00:00
17 lines
516 B
PowerShell
17 lines
516 B
PowerShell
Describe "PHP" {
|
|
It "Check PHP version" {
|
|
$phpMajorMinor = (Get-ToolsetContent).php.version
|
|
$phpInstalledVersion = php --version | Select-String -Pattern "PHP $phpMajorMinor"
|
|
$phpInstalledVersion | Should -BeLike "*${phpMajorMinor}*"
|
|
}
|
|
|
|
It "Check Composer in the PATH" {
|
|
"composer --version" | Should -ReturnZeroExitCode
|
|
}
|
|
|
|
It "PHP Environment variables is set." {
|
|
${env:PHPROOT} | Should -Not -BeNullOrEmpty
|
|
${env:PHPROOT} | Should -Exist
|
|
}
|
|
}
|