Files
runner-images-sangeeth/images/macos/tests/Linters.Tests.ps1
2023-05-12 13:30:13 +02:00

9 lines
246 B
PowerShell

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