Skip to content

Commit 5ff93e6

Browse files
Added xcodebuild action
1 parent 5a2970d commit 5ff93e6

File tree

2 files changed

+19
-4
lines changed

2 files changed

+19
-4
lines changed

.github/workflows/codecov.yml

Lines changed: 0 additions & 4 deletions
This file was deleted.

.github/workflows/xcodebuild.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Xcode Build
2+
on:
3+
pull_request:
4+
branches: ["master"]
5+
push:
6+
branches: ["master"]
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

Comments
 (0)