-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
66 lines (63 loc) · 1.68 KB
/
test.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# test.yml
# Unit Test
name: Unit Test
'on':
pull_request:
paths:
- '**.swift'
- '**.xcodeproj'
- '**.m'
- '**.h'
- '**.podspec'
- Podfile
- Podfile.lock
- '**/test.yml'
jobs:
swiftpm:
name: Test iOS (swiftpm)
runs-on: macOS-latest
env:
DEVELOPER_DIR: /Applications/Xcode_14.2.app/Contents/Developer
steps:
- name: Checkout
uses: actions/checkout@master
- name: iOS - Swift PM
run: |
pod install
set -o pipefail && swift test --parallel
XCode:
name: Test iOS
runs-on: macOS-latest
env:
DEVELOPER_DIR: /Applications/Xcode_14.2.app/Contents/Developer
strategy:
matrix:
run-config:
- scheme: Hero
platform: iOS
action: test
code-coverage: true
- scheme: Hero (tvOS)
platform: tvOS
action: build
code-coverage: false
steps:
- name: Checkout
uses: actions/checkout@master
- name: CocoaPods - ${{ matrix.run-config.destination }}
run: |
pod install
- name: Test - ${{ matrix.run-config.platform }}
uses: mxcl/[email protected]
with:
platform: ${{ matrix.run-config.platform }}
action: ${{ matrix.run-config.action }}
code-coverage: ${{ matrix.run-config.code-coverage }}
configuration: Debug
scheme: ${{ matrix.run-config.scheme }}
workspace: Hero.xcworkspace
- name: Upload Code Coverage
uses: codecov/codecov-action@v3
if: ${{ matrix.run-config.code-coverage }}
with:
token: ${{ secrets.CODECOV_TOKEN }}