-
-
Notifications
You must be signed in to change notification settings - Fork 1
38 lines (25 loc) · 858 Bytes
/
swift.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
# This workflow will build a Swift project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
name: Swift
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
SwiftLint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: GitHub Action for SwiftLint
uses: norio-nomura/action-swiftlint@3.2.1
Build:
runs-on: macOS-12
steps:
- uses: actions/checkout@v3
- name: Build iOS
run: xcodebuild -scheme Tabify -destination 'generic/platform=iOS'
- name: Build macOS
run: xcodebuild -scheme Tabify -destination 'generic/platform=macOS'
- name: Build mac Catalyst
run: xcodebuild -scheme Tabify -destination 'generic/platform=macOS,variant=Mac Catalyst'