-
Notifications
You must be signed in to change notification settings - Fork 14
39 lines (36 loc) · 950 Bytes
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Build and Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
if: ${{ false }} # disable for now
runs-on: macos-latest
name: Build macOS
steps:
- name: Check out Source
uses: actions/checkout@v2
with:
submodules: "true"
- name: Build macOS
uses: sersoft-gmbh/xcodebuild-action@v2
with:
project: "Telemetry Viewer.xcodeproj"
scheme: "Telemetry Viewer (macOS)"
destination: platform=macOS
action: build
- name: Build iOS
uses: sersoft-gmbh/xcodebuild-action@v2
with:
project: "Telemetry Viewer.xcodeproj"
scheme: "Telemetry Viewer (iOS)"
destination: platform=iOS
action: build
SwiftLint:
runs-on: ubuntu-latest
name: SwiftLint
steps:
- uses: actions/checkout@v1
- uses: norio-nomura/[email protected]