Updates build workflow #85
Workflow file for this run
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: | |
branches: [ main ] | |
jobs: | |
build: | |
name: Build | |
runs-on: macos-14 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Use HTTPS | |
run: git config --global url.https://github.com/.insteadOf ssh://[email protected]/ | |
- name: Build | |
run: | | |
xcodebuild\ | |
-scheme TreeSitterLanguages-Package\ | |
-sdk iphonesimulator\ | |
-destination 'platform=iOS Simulator,name=iPhone 15 Pro' |