Use organization level CocoaPods token #67
Workflow file for this run
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: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
run-tests: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
os: ['tvOS', 'iOS'] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: '13.2.1' | |
- uses: actions/cache@v1 | |
id: carthage-cache | |
with: | |
path: Carthage | |
key: ${{ runner.os }}-carthage-${{ hashFiles('**/Cartfile.resolved') }} | |
- name: Build | |
if: steps.carthage-cache.outputs.cache-hit != 'true' | |
run: | | |
sh ./Consumption-Tests/Shared/carthage.sh bootstrap --cache-builds --use-xcframeworks | |
- uses: futureware-tech/simulator-action@v1 | |
id: simulator | |
with: | |
os: ${{ matrix.os }} | |
- name: "Run ${{ matrix.os }} Tests" | |
run: | | |
set -o pipefail && env NSUnbufferedIO=YES xcodebuild \ | |
-project PusherSwift.xcodeproj \ | |
-scheme PusherSwift \ | |
build \ | |
COMPILER_INDEX_STORE_ENABLE=NO \ | |
test \ | |
-destination "id=${{ steps.simulator.outputs.udid }}" \ | |
| xcpretty --color |