An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

        

# xchequer
GitHub action to read xcodebuild output and post a check for errors and test failures

Screenshot of xchequer output

## 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

```