-
Notifications
You must be signed in to change notification settings - Fork 11
77 lines (66 loc) · 2.25 KB
/
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
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
67
68
69
70
71
72
73
74
75
76
77
name: iOS Core SDK CI
on:
workflow_dispatch:
push:
branches:
- master
- support/SDK-V3
- feature/**
- bugfix/**
jobs:
test:
name: Test - ${{ matrix.os }} - ${{ matrix.xcode_version }} - ${{ matrix.fastlane_task }}
strategy:
fail-fast: false
matrix:
include:
- os: macos-13
xcode_version: 15.2
fastlane_task: unit_tests
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '${{ matrix.xcode_version }}'
- name: Carthage [Setup cache]
uses: actions/cache@v3
with:
path: Carthage
key: ${{ runner.os }}-carthage-${{ hashFiles('**/Cartfile.resolved') }}
restore-keys: |
${{ runner.os }}-carthage-${{ hashFiles('**/Cartfile.resolved') }}
- name: Carthage [Install dependencies]
run: carthage bootstrap
--platform ios
--cache-builds
--use-xcframeworks
--no-use-binaries
- name: Run ${{ matrix.task_title }}
run: fastlane ${{ matrix.fastlane_task }}
- name: Lint validation
run:
swiftlint lint --strict --reporter json
- name: Code Coverage [Build report]
run: |
brew install llvm
export PATH="$(brew --prefix llvm)/bin:$PATH"
llvm-cov report \
--use-color \
--instr-profile=$(find ./output -name "*.profdata") \
--object $(find ./output -name "HyperwalletSDK") \
-ignore-filename-regex="HyperwalletPrepaidCard.swift|/HyperwalletUser.swift"
- name: Code Coverage [Export report to lcov format]
run: |
export PATH="$(brew --prefix llvm)/bin:$PATH"
mkdir coverage
llvm-cov export \
--format=lcov > ./coverage/lcov.info \
--instr-profile=$(find ./output -name "*.profdata") \
--object $(find ./output -name "HyperwalletSDK") \
-ignore-filename-regex="HyperwalletPrepaidCard.swift|/HyperwalletUser.swift"
- name: Post to Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}