mirror of
https://github.com/actions/runner-images.git
synced 2025-12-20 06:35:47 +00:00
* [macOS] Fail Pester tests on error * return it back * [macOS] Pester tests invokation after install * fix nitpicks * CocoaPods fix
15 lines
369 B
PowerShell
15 lines
369 B
PowerShell
Describe "PHP" {
|
|
Context "PHP" {
|
|
It "PHP Path" {
|
|
Get-WhichTool "php" | Should -Not -BeLike "/usr/bin/php*"
|
|
}
|
|
It "PHP version" {
|
|
"php --version" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
Context "Composer" {
|
|
It "Composer" {
|
|
"composer --version" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
} |