Skip to content

refactor: Use async/await when fetching CareView tasks (#120) #304

refactor: Use async/await when fetching CareView tasks (#120)

refactor: Use async/await when fetching CareView tasks (#120) #304

Workflow file for this run

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)