chore(deps): update dependency rxrealm to v5.1.0 - abandoned #54
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: iOS Build CI | |
on: | |
push: | |
branches: [ master ] | |
paths-ignore: [ '**.md', '**.MD', 'PhDownloader Example/**' ] | |
pull_request: | |
branches: [ master ] | |
paths-ignore: [ '**.md', '**.MD', 'PhDownloader Example/**' ] | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build default scheme using any available iPhone simulator | |
runs-on: macos-13 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4 | |
- name: Setup Xcode | |
uses: maxim-lobanov/setup-xcode@v1.6.0 | |
with: | |
xcode-version: 'latest-stable' | |
- name: Prepare and open Simulator | |
run: | | |
xcrun simctl create iphone-12-pro "iPhone 12 Pro" | |
xcrun simctl boot iphone-12-pro | |
open /Applications/Xcode.app/Contents/Developer/Applications/Simulator.app | |
- uses: actions/cache@v4 | |
with: | |
path: Pods | |
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }} | |
restore-keys: | | |
${{ runner.os }}-pods- | |
- name: Pod install | |
run: pod install | |
- name: Build | |
uses: sersoft-gmbh/xcodebuild-action@v3.0.0 | |
with: | |
workspace: PhDownloader.xcworkspace | |
scheme: PhDownloader | |
action: build | |
sdk: iphonesimulator | |
destination: platform=iOS Simulator,name=iphone-12-pro | |
configuration: Debug | |
build-settings: CODE_SIGNING_REQUIRED=NO |