Skip to content

Commit

Permalink
Test exit codes of all supported build commands
Browse files Browse the repository at this point in the history
  • Loading branch information
SimplyDanny committed Sep 7, 2024
1 parent 175e4c1 commit a62fe72
Showing 1 changed file with 32 additions and 1 deletion.
33 changes: 32 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ defaults:

jobs:
plugin:
name: Test Plugin
name: Test Plugins
runs-on: macos-13
steps:
- name: Select Xcode
Expand All @@ -37,8 +37,39 @@ jobs:
echo "included: [Sources]" > .swiftlint.yml
- name: Build project and check findings
run: swift build 2>&1 | grep -q "Force Cast Violation"
- name: Let build fail
id: failed_build
run: swift build
continue-on-error: true
- name: Check that build failed
if: ${{ steps.failed_build.outcome != 'failure' }}
run: exit 1
- name: Verify command plugin
run: |
swift package swiftlint --version
swift package swiftlint --help
swift package swiftlint 2>&1 | grep -q "Force Cast Violation"
- name: Let command fail
id: failed_command
run: swift package swiftlint
continue-on-error: true
- name: Check that command failed
if: ${{ steps.failed_command.outcome != 'failure' }}
run: exit 1
- name: Verify Xcode plugin
run: xcodebuild -scheme SwiftLintPluginsTest -destination 'platform=macOS' build 2>&1 | grep -q "Force Cast Violation"
- name: Let Xcode build fail
id: failed_xcode_build
run: xcodebuild -scheme SwiftLintPluginsTest -destination 'platform=macOS' build
continue-on-error: true
- name: Check that Xcode build failed
if: ${{ steps.failed_xcode_build.outcome != 'failure' }}
run: exit 1
- name: Change to warning
run: |
echo "force_cast: warning" > .swiftlint.yml
- name: Check that all commands pass
run: |
swift build
swift package swiftlint
xcodebuild -scheme SwiftLintPluginsTest -destination 'platform=macOS' build

0 comments on commit a62fe72

Please sign in to comment.