Files

10 lines
267 B
PowerShell
Raw Permalink Normal View History

2023-11-28 02:25:03 +01:00
Import-Module "$PSScriptRoot/Helpers.psm1" -DisableNameChecking
$os = Get-OSVersion
2024-09-03 18:45:06 +02:00
Describe "SwiftLint" -Skip:($os.IsVenturaArm64 -or $os.IsSonomaArm64 -or $os.IsSequoiaArm64) {
It "SwiftLint" {
"swiftlint version" | Should -ReturnZeroExitCode
}
}