[Test Internal] Add Workflow to build, tests and deploy. Cocoapod version update #338 #19
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] | |
workflow_dispatch: | |
jobs: | |
build-and-test: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
build-config: | |
- { | |
scheme: "Cache-iOS", | |
destination: "platform=iOS Simulator,name=iPhone 15", | |
sdk: "iphonesimulator", | |
} | |
- { | |
scheme: "Cache-tvOS", | |
destination: "platform=tvOS Simulator,name=Apple TV", | |
sdk: "appletvsimulator", | |
} | |
- { | |
scheme: "Cache-watchOS", | |
destination: "platform=watchOS Simulator,name=Apple Watch Ultra 2", | |
sdk: "watchsimulator", | |
} | |
- { | |
scheme: "Cache-macOS", | |
destination: "platform=generic/platform=macOS", | |
sdk: "macosx", | |
} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build | |
run: | | |
xcodebuild clean build \ | |
-project 'Cache.xcodeproj' \ | |
-scheme '${{ matrix.build-config['scheme'] }}' \ | |
-sdk '${{ matrix.build-config['sdk'] }}' \ | |
-destination '${{ matrix.build-config['destination'] }}' | |
- name: Execute Unit Tests | |
run: | | |
if [ "${{ matrix.build-config['scheme'] }}" == "Cache-watchOS" ]; then | |
exit 0; | |
fi | |
xcodebuild test \ | |
-project 'Cache.xcodeproj' \ | |
-scheme '${{ matrix.build-config['scheme'] }}' \ | |
-sdk '${{ matrix.build-config['sdk'] }}' \ | |
-destination '${{ matrix.build-config['destination'] }}' |