Skip to content

fix price api

fix price api #59

Workflow file for this run

name: iOS Build
on:
push:
pull_request:
jobs:
build:
name: Compile app
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode.app
- name: Install CocoaPods
run: sudo gem install cocoapods
- name: Install pods
run: pod install
- name: Build for simulator without signing
run: |
set -o pipefail
xcodebuild \
-workspace VergeiOS.xcworkspace \
-scheme VergeiOS \
-configuration Debug \
-sdk iphonesimulator \
-destination 'generic/platform=iOS Simulator' \
-derivedDataPath .build/DerivedData \
CODE_SIGNING_ALLOWED=NO \
CODE_SIGNING_REQUIRED=NO \
CODE_SIGN_IDENTITY="" \
DEVELOPMENT_TEAM="" \
COMPILER_INDEX_STORE_ENABLE=NO \
build