Skip to content
This repository was archived by the owner on Sep 19, 2024. It is now read-only.

Commit 426e902

Browse files
committed
Build all 3 schemes
1 parent 68bdb3b commit 426e902

File tree

1 file changed

+22
-4
lines changed

1 file changed

+22
-4
lines changed

.github/workflows/checks.yml

+22-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,33 @@
1-
name: Checks
1+
name: Build
22

33
on:
44
push:
55
branches: [ master ]
66
pull_request:
77
branches: '*'
88

9+
env:
10+
DEVELOPER_DIR: /Applications/Xcode_11.4.app/Contents/Developer
11+
912
jobs:
10-
build:
13+
iOS:
14+
runs-on: macos-latest
15+
steps:
16+
- name: Checkout
17+
uses: actions/checkout@v2
18+
- name: Build
19+
run: xcodebuild -scheme "Rswift-iOS"
20+
tvOS:
21+
runs-on: macos-latest
22+
steps:
23+
- name: Checkout
24+
uses: actions/checkout@v2
25+
- name: Build
26+
run: xcodebuild -scheme "Rswift-tvOS"
27+
watchOS:
1128
runs-on: macos-latest
1229
steps:
13-
- uses: actions/checkout@v2
30+
- name: Checkout
31+
uses: actions/checkout@v2
1432
- name: Build
15-
run: swift build -v
33+
run: xcodebuild -scheme "Rswift-watchOS"

0 commit comments

Comments
 (0)