mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-15 22:36:46 +00:00
19 lines
391 B
PowerShell
19 lines
391 B
PowerShell
$os = Get-OSVersion
|
|
|
|
Describe "Haskell" {
|
|
Context "GHCup" {
|
|
It "GHCup" {
|
|
"ghcup --version" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
Context "GHC" {
|
|
It "GHC" {
|
|
"ghc --version" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
Context "Cabal" {
|
|
It "Cabal" {
|
|
"cabal --version" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
} |