/xchequer

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

Primary LanguageJavaScriptMIT LicenseMIT

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.
      - name: Build project
        run: xcrun xcodebuild clean build -project MyProject.xcodeproj -scheme MyProject > log.txt	
  • Add this step to after your build step
    - name: Create annotations
      uses: maxgoedjen/xchequer@INSERT_LATEST_VERSION_HERE
      if: always()
      with:
        log: log.txt