We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a2970d commit 5ff93e6Copy full SHA for 5ff93e6
.github/workflows/codecov.yml
.github/workflows/xcodebuild.yml
@@ -0,0 +1,19 @@
1
+name: Xcode Build
2
+on:
3
+ pull_request:
4
+ branches: ["master"]
5
+ push:
6
7
+jobs:
8
+ build:
9
+ name: Build AppBox
10
+ runs-on: macos-latest
11
+ steps:
12
+ - name: Checkout repository
13
+ uses: actions/checkout@v1
14
+ - name: Use latest Xcode
15
+ uses: maxim-lobanov/setup-xcode@v1
16
+ with:
17
+ xcode-version: latest
18
+ - name: Build App
19
+ run: xcodebuild clean build -workspace AppBox.xcworkspace -scheme AppBox CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcpretty
0 commit comments