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
19 lines
416 B
PowerShell
19 lines
416 B
PowerShell
$os = Get-OSVersion
|
|
|
|
Describe "Haskell" -Skip:($os.IsHighSierra) {
|
|
Context "GHCup" {
|
|
It "GHCup" {
|
|
"ghcup --version" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
Context "GHC" {
|
|
It "GHC" {
|
|
"ghc --version" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
Context "Cabal" {
|
|
It "Cabal" {
|
|
"cabal --version" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
} |