Skip to content

Merge pull request #66 from OneBusAway/add-final-report-readme #97

Merge pull request #66 from OneBusAway/add-final-report-readme

Merge pull request #66 from OneBusAway/add-final-report-readme #97

Workflow file for this run

name: OTPKitTests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Switch Xcode 15
run: sudo xcode-select -switch /Applications/Xcode_15.0.1.app
# Build
- name: Build OTPKit
run: |
xcodebuild build-for-testing \
-scheme OTPKit \
-destination "platform=iOS Simulator,name=iPhone 15,OS=latest" \
-enableCodeCoverage YES
# Upload results
- uses: kishikawakatsumi/xcresulttool@v1.7.0
continue-on-error: true
with:
show-passed-tests: false # Avoid truncation of annotations by GitHub by omitting succeeding tests.
path: |
OTPKitTests.xcresult
if: success() || failure()