Skip to content

Update GitHub Actions workflow for Fossa scan #2

Update GitHub Actions workflow for Fossa scan

Update GitHub Actions workflow for Fossa scan #2

Workflow file for this run

name: macOS CI
on:
push:
branches: [ master, 3.0.0.beta ]
pull_request:
branches: [ master, 3.0.0.beta ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Install Dependencies
working-directory: MixpanelDemo
run:
pod install --repo-update
- name: Swift Lint
run: swiftlint
- name: Run Test
working-directory: MixpanelDemo
run: |
set -o pipefail
xcodebuild -workspace MixpanelDemo.xcworkspace -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