-
Notifications
You must be signed in to change notification settings - Fork 6
30 lines (26 loc) · 823 Bytes
/
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
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
env:
PACKAGE_NAME: Kodable
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Prepare Build
run: brew bundle
- name: Build
run: swift build
- 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.PACKAGE_NAME }}PackageTests.xctest/Contents/MacOS/${{ env.PACKAGE_NAME }}PackageTests -instr-profile .build/debug/codecov/default.profdata > info.lcov
- name: Upload to CodeCov.io
run: bash <(curl https://codecov.io/bash)