-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (39 loc) · 1.11 KB
/
macos.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
name: macOS
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
macos_test:
name: Execute tests on macOS
strategy:
matrix:
os: [macos-15]
xcode-version: [16.0]
runs-on: ${{ matrix.os }}
env:
PROTOBUFKIT_SWIFTUI_COMPATIBILITY_TEST: 0
steps:
- uses: actions/checkout@v4
- name: Setup Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: ${{ matrix.xcode-version }}
- name: Build and run tests in debug mode with coverage
run: |
swift test \
-c debug \
--enable-code-coverage \
--build-path .build-test-debug
xcrun llvm-cov show \
-instr-profile=.build-test-debug/debug/codecov/default.profdata \
.build-test-debug/debug/ProtobufKitPackageTests.xctest/Contents/MacOS/ProtobufKitPackageTests \
> coverage.txt
- uses: codecov/codecov-action@v4
with:
file: ./coverage.txt
flags: unittests
verbose: true
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}