the copy was supposed to be on the data not response #147
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: | |
- master | |
- 'releases/*' | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
name: Build | |
runs-on: macOS-latest | |
strategy: | |
matrix: | |
platform: ['iOS Simulator,name=iPhone 8'] | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Analyze and Test | |
run: | | |
xcodebuild clean analyze test \ | |
-destination "platform=${{ matrix.platform }}" \ | |
-sdk "iphonesimulator" \ | |
-workspace Example/PINFuture.xcworkspace \ | |
-scheme PINFuture-Example \ | |
ONLY_ACTIVE_ARCH=NO \ | |
CODE_SIGNING_REQUIRED=NO \ | |
| xcpretty | |
cocoapods: | |
name: CocoaPods | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Lint | |
run: pod lib lint |