@@ -35,29 +35,20 @@ jobs:
35
35
cp ../SwiftLintPlugins/.github/workflows/Package.swift .
36
36
echo "let myVar = 0 as! Int" > Sources/main.swift
37
37
echo "included: [Sources]" > .swiftlint.yml
38
- - name : Build project and check findings
39
- run : swift build 2>&1 | grep -q "Force Cast Violation"
40
38
- name : Let build fail
41
39
id : failed_build
42
40
run : swift build
43
41
continue-on-error : true
44
42
- name : Check that build failed
45
43
if : ${{ steps.failed_build.outcome != 'failure' }}
46
44
run : exit 1
47
- - name : Verify command plugin
48
- run : |
49
- swift package swiftlint --version
50
- swift package swiftlint --help
51
- swift package swiftlint 2>&1 | grep -q "Force Cast Violation"
52
45
- name : Let command fail
53
46
id : failed_command
54
47
run : swift package swiftlint
55
48
continue-on-error : true
56
49
- name : Check that command failed
57
50
if : ${{ steps.failed_command.outcome != 'failure' }}
58
51
run : exit 1
59
- - name : Verify Xcode plugin
60
- run : xcodebuild -scheme SwiftLintPluginsTest -destination 'platform=macOS' build 2>&1 | grep -q "Force Cast Violation"
61
52
- name : Let Xcode build fail
62
53
id : failed_xcode_build
63
54
run : xcodebuild -scheme SwiftLintPluginsTest -destination 'platform=macOS' build
70
61
echo "force_cast: warning" > .swiftlint.yml
71
62
- name : Check that all commands pass
72
63
run : |
73
- swift build
74
- swift package swiftlint
75
- xcodebuild -scheme SwiftLintPluginsTest -destination 'platform=macOS' build
64
+ swift build | grep -q "Force Cast Violation"
65
+ swift package swiftlint | grep -q "Force Cast Violation"
66
+ xcodebuild -scheme SwiftLintPluginsTest -destination 'platform=macOS' build | grep -q "Force Cast Violation"
0 commit comments