-
Notifications
You must be signed in to change notification settings - Fork 85
33 lines (28 loc) · 1.09 KB
/
pr_ci.yaml
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
name: pr_ci
on:
pull_request:
branches:
- main
types: [opened, reopened, synchronize]
jobs:
test:
runs-on: macos-latest
name: Run Unit Tests
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Xcode
run: sudo xcode-select -switch /Applications/Xcode.app
- name: Cache DerivedData
uses: actions/cache@v3
with:
path: ~/Library/Developer/Xcode/DerivedData
key: ${{ runner.os }}-xcode-${{ hashFiles('**/project.pbxproj') }}
restore-keys: |
${{ runner.os }}-xcode-
- name: Build, Test and Generate Coverage
run: |
xcodebuild -scheme Scribe -derivedDataPath Build/ -destination 'platform=iOS Simulator,name=iPhone 16,OS=latest' clean build test -enableCodeCoverage YES CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
xcrun xccov view --report $(find ./Build/Logs/Test -name '*.xcresult') --json > code_coverage.json
- name: Parse Coverage and Print to Terminal
run: swift Tests/ProcessCoverageReport.swift code_coverage.json 5