Rename build to build.yml #1
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: build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Xcode | |
run: sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer | |
- name: Install dependencies | |
run: ./setup.sh | |
- name: Build | |
run: xcodebuild -workspace Pyto.xcworkspace -scheme Pyto -configuration Release |