Used Claude Code to increase test coverage #1
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Tests | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| test: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Build and run tests | |
| run: | | |
| xcodebuild test \ | |
| -project "Jamf Sync.xcodeproj" \ | |
| -scheme "Jamf Sync" \ | |
| -destination "platform=macOS" \ | |
| -only-testing "Jamf SyncTests" \ | |
| -enableCodeCoverage YES | |
| - name: Upload code coverage | |
| uses: codecov/codecov-action@v4 | |
| if: always() | |
| with: | |
| fail_ci_if_error: false |