fix: Update ParseCareKit to 1.0.0-beta (#117) #302
This file contains 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: ci | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
CI_XCODE: '/Applications/Xcode_15.0.app/Contents/Developer' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: macos-13 | |
strategy: | |
matrix: | |
destination: ['-destination platform\=iOS\ Simulator,name\=iPhone\ 14\ Pro\ Max test', 'CODE_SIGNING_ALLOWED="NO"'] | |
scheme: ['OCKSample', 'OCKWatchSample'] | |
exclude: | |
- destination: '-destination platform\=iOS\ Simulator,name\=iPhone\ 14\ Pro\ Max test' | |
scheme: 'OCKWatchSample' | |
- destination: 'CODE_SIGNING_ALLOWED="NO"' | |
scheme: 'OCKSample' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build-Test | |
run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild -project OCKSample.xcodeproj -scheme ${{ matrix.scheme }} ${{ matrix.destination }} | xcpretty | |
env: | |
DEVELOPER_DIR: ${{ env.CI_XCODE }} | |
- name: Send codecov | |
run: bash <(curl https://codecov.io/bash) |