mirror of
https://github.com/actions/runner-images.git
synced 2025-12-20 06:35:47 +00:00
22 lines
491 B
PowerShell
22 lines
491 B
PowerShell
$os = Get-OSVersion
|
|
|
|
Describe "Apache" -Skip:($os.IsLessThanCatalina) {
|
|
It "Apache CLI" {
|
|
"httpd -v" | Should -ReturnZeroExitCode
|
|
}
|
|
|
|
It "Apache Service" {
|
|
brew services list | Out-String | Should -Match "httpd\s+stopped"
|
|
}
|
|
}
|
|
|
|
Describe "Nginx" -Skip:($os.IsLessThanCatalina) {
|
|
It "Nginx CLI" {
|
|
"nginx -v" | Should -ReturnZeroExitCode
|
|
}
|
|
|
|
It "Nginx Service" {
|
|
brew services list | Out-String | Should -Match "nginx\s+stopped"
|
|
}
|
|
}
|