https://github.com/maxgoedjen/xchequer
GitHub action to read xcodebuild output and post a check for errors and test failures
https://github.com/maxgoedjen/xchequer
Last synced: 22 days ago
JSON representation
GitHub action to read xcodebuild output and post a check for errors and test failures
- Host: GitHub
- URL: https://github.com/maxgoedjen/xchequer
- Owner: maxgoedjen
- License: mit
- Created: 2020-05-26T05:39:07.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2023-07-12T05:50:56.000Z (almost 2 years ago)
- Last Synced: 2025-03-17T23:52:29.205Z (about 1 month ago)
- Language: JavaScript
- Size: 1.09 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# xchequer
GitHub action to read xcodebuild output and post a check for errors and test failures
## Getting set up
- In your existing action, make sure you're writing your xcodebuild log out to disk.
```yaml
- name: Build project
run: xcrun xcodebuild clean build -project MyProject.xcodeproj -scheme MyProject > log.txt
```
- Add this step to after your build step
```yaml
- name: Create annotations
uses: maxgoedjen/xchequer@INSERT_LATEST_VERSION_HERE
if: always()
with:
log: log.txt```