Fixing serviceInfo - bug file upload #27
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: Pryv lib swift | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
jobs: | |
test: | |
runs-on: macOS-latest | |
strategy: | |
matrix: | |
xcode: ['/Applications/Xcode_11.1.app/Contents/Developer'] | |
steps: | |
- name: Download master branch | |
uses: actions/checkout@v2 | |
- name: Install Dependencies | |
run: | | |
pod install | |
shell: bash | |
env: | |
DEVELOPER_DIR: ${{ matrix.xcode }} | |
- name: Build and test | |
run: | | |
xcodebuild clean test -enableCodeCoverage YES -workspace 'PryvSwiftKit.xcworkspace' -scheme 'PryvSwiftKit' -destination 'platform=iOS Simulator,name=iPhone 11 Pro Max,OS=latest' | |
bash <(curl -s https://codecov.io/bash) | |
env: | |
destination: ${{ matrix.destination }} |