Files
runner-images-sangeeth/images/macos/tests/Haskell.Tests.ps1
2021-11-18 17:23:05 +03:00

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
}
}
}