-
Notifications
You must be signed in to change notification settings - Fork 6
43 lines (38 loc) · 1.43 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
42
43
name: macOS
on: [push]
jobs:
build:
env:
PACKAGE_NAME: Speculid
runs-on: macos-latest
if: "!contains(github.event.head_commit.message, 'ci skip')"
steps:
- uses: actions/checkout@v2
- name: Prepare Build
run: brew bundle
#- name: Build
# run: swift build
- name: Lint
run: swiftformat --lint . && swiftlint
#- name: Run tests
# run: swift test -v --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) -F github -F macOS -n ${{ github.sha }}
# env:
# CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
#- name: Build Documentation
# run: sourcedocs generate --spm-module ${{ env.PACKAGE_NAME }}
#- name: Verify Valid Swift Package
# run: swift package dump-package | jq -e ".products | length > 0"
#- name: CocoaPods Action
# run: pod lib lint
#- name: Commit files
# run: |
# git config --local user.email "action@github.com"
# git config --local user.name "GitHub Action"
# git status
# git add Documentation
# git diff-index --quiet HEAD || git commit -m "[github action] Update Docs"
# git push