Version 4.2.7 #508
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: macOS CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run Test | |
working-directory: MixpanelDemo | |
run: | | |
set -o pipefail | |
xcodebuild -scheme MixpanelDemoMac -derivedDataPath Build/ -configuration Debug ONLY_ACTIVE_ARCH=NO ENABLE_TESTABILITY=YES -enableCodeCoverage YES clean build test | xcpretty -c; | |
- name: Code Coverage Report | |
working-directory: MixpanelDemo/build/Logs/Test | |
run: | | |
xcrun xccov view --report --files-for-target Mixpanel.framework *.xcresult | |
xcrun xccov view --report --only-targets *.xcresult |