Added endpoints example #12
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: Test | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| test: | |
| name: Run Tests | |
| runs-on: macos-15 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - uses: maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version: '26.1.1' | |
| - name: Build and Test | |
| run: | | |
| xcodebuild test \ | |
| -project EndpointsExample.xcodeproj \ | |
| -scheme EndpointsExample \ | |
| -destination 'platform=iOS Simulator,name=iPhone 17,OS=latest' \ | |
| -enableCodeCoverage YES \ | |
| | xcpretty && exit ${PIPESTATUS[0]} |