Files
runner-images/images/macos/scripts/tests/Linters.Tests.ps1
2023-11-15 12:12:28 +01:00

10 lines
261 B
PowerShell

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