-
-
Notifications
You must be signed in to change notification settings - Fork 138
40 lines (29 loc) · 855 Bytes
/
CI.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
40
name: CI
on:
push:
paths:
- '.github/workflows/swiftlint.yml'
- '.swiftlint.yml'
- '**/*.swift'
pull_request:
paths:
- '.github/workflows/swiftlint.yml'
- '.swiftlint.yml'
- '**/*.swift'
jobs:
SwiftLint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: GitHub Action for SwiftLint
uses: norio-nomura/[email protected]
Build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Build iOS
run: xcodebuild -scheme BottomSheet -destination 'generic/platform=iOS'
- name: Build macOS
run: xcodebuild -scheme BottomSheet -destination 'generic/platform=macOS'
- name: Build mac Catalyst
run: xcodebuild -scheme BottomSheet -destination 'generic/platform=macOS,variant=Mac Catalyst'