Skip to content

Commit 89d8b1f

Browse files
committed
Skip result check on error
1 parent b97754b commit 89d8b1f

File tree

1 file changed

+3
-12
lines changed

1 file changed

+3
-12
lines changed

.github/workflows/test.yml

+3-12
Original file line numberDiff line numberDiff line change
@@ -35,29 +35,20 @@ jobs:
3535
cp ../SwiftLintPlugins/.github/workflows/Package.swift .
3636
echo "let myVar = 0 as! Int" > Sources/main.swift
3737
echo "included: [Sources]" > .swiftlint.yml
38-
- name: Build project and check findings
39-
run: swift build 2>&1 | grep -q "Force Cast Violation"
4038
- name: Let build fail
4139
id: failed_build
4240
run: swift build
4341
continue-on-error: true
4442
- name: Check that build failed
4543
if: ${{ steps.failed_build.outcome != 'failure' }}
4644
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"
5245
- name: Let command fail
5346
id: failed_command
5447
run: swift package swiftlint
5548
continue-on-error: true
5649
- name: Check that command failed
5750
if: ${{ steps.failed_command.outcome != 'failure' }}
5851
run: exit 1
59-
- name: Verify Xcode plugin
60-
run: xcodebuild -scheme SwiftLintPluginsTest -destination 'platform=macOS' build 2>&1 | grep -q "Force Cast Violation"
6152
- name: Let Xcode build fail
6253
id: failed_xcode_build
6354
run: xcodebuild -scheme SwiftLintPluginsTest -destination 'platform=macOS' build
@@ -70,6 +61,6 @@ jobs:
7061
echo "force_cast: warning" > .swiftlint.yml
7162
- name: Check that all commands pass
7263
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

Comments
 (0)