-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
15 additions
and
15 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
name: Build | ||
# You may pin to the exact commit or the version. | ||
# uses: Randomblock1/theos-action@da432cbe88433bafb9abf94dbbc979daab5fcf04 | ||
uses: Randomblock1/theos-action@v1.4 | ||
with: | ||
# Where to install Theos | ||
theos-dir: # optional, default is ${{ github.workspace }}/theos | ||
# Where to clone Theos from (git URL) | ||
theos-src: # optional, default is https://github.com/theos/theos | ||
# Where to clone the iOS SDKs from (GitHub repository URL) | ||
theos-sdks: # optional, default is https://github.com/theos/sdks | ||
# Which branch to clone from SDK repo | ||
theos-sdks-branch: # optional, default is master | ||
# Whether to enable Orion, which adds support for Swift tweaks | ||
orion: # optional, default is false | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
build: | ||
name: Build and test | ||
runs-on: macos-13 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Show current version of Xcode | ||
run: xcodebuild -version |