-
Notifications
You must be signed in to change notification settings - Fork 2
43 lines (33 loc) · 1.02 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
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
env:
PACKAGE_NAME: Injection
runs-on: macos-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
- name: Prepare Build
run: brew bundle
- name: Lint
if: startsWith(github.ref, 'refs/tags/') != true
run: swiftformat --lint . && swiftlint
- name: Run tests
run: swift test --enable-code-coverage
- name: Prepare Code Coverage
run: xcrun llvm-cov export -format="lcov" .build/debug/${{ env.SP_NAME }}PackageTests.xctest/Contents/MacOS/${{ env.SP_NAME }}PackageTests -instr-profile .build/debug/codecov/default.profdata > coverage.lcov
- name: Upload coverage to CodeCov.io
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
files: ./coverage.lcov
token: ${{ secrets.CODECOV_TOKEN }}