Update ios.yml #8
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 starter workflow | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build-and-test: | |
runs-on: macos-13 | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
# - name: Set up Xcode | |
# uses: maxim-lobanov/setup-xcode@v1 | |
# with: | |
# xcode-version: 15.0-beta | |
- name: Get List of XCode Versions | |
run: ls /Applications/ | |
- name: Build | |
run: xcodebuild build -project "Bhagavad Gita.xcodeproj" -scheme "Bhagavad Gita" |