Created
February 20, 2023 18:58
-
-
Save UmutSERIFLER/d13d14b69727a773b1549d8e1d3dc993 to your computer and use it in GitHub Desktop.
Build Project
This file contains hidden or 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 Project Workflow | |
on: | |
push: | |
branches: [ "develop" ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
env: | |
ProjectName: SampleProject | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build For Testing | |
run: | | |
xcodebuild build-for-testing -scheme ${{ env.ProjectName }} -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 14 Pro,OS=16.2' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment