Files
runner-images-sangeeth/images/macos/tests/Linters.Tests.ps1
2020-09-10 14:34:08 +03:00

13 lines
310 B
PowerShell

Import-Module "$PSScriptRoot/../helpers/Tests.Helpers.psm1"
$os = Get-OSVersion
Describe "Linters" {
It "yamllint" {
"yamllint --version" | Should -ReturnZeroExitCode
}
It "SwiftLint" -Skip:($os.IsHighSierra) {
"swiftlint version" | Should -ReturnZeroExitCode
}
}