Skip to content

update github workflow, add profile and disable auto signing #260

update github workflow, add profile and disable auto signing

update github workflow, add profile and disable auto signing #260

Workflow file for this run

name: Mixpanel ObjC SDK action
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: macos-latest
strategy:
matrix:
destination: ['name="iPhone 15 Pro",OS=latest']
scheme: ['"[iOS] HelloMixpanel"']
steps:
- uses: actions/checkout@v4
- name: Run Test
working-directory: HelloMixpanel
run: |
set -o pipefail
xcodebuild \
-scheme ${{ matrix.scheme }} \
-derivedDataPath Build/ \
-destination "${{ matrix.destination }}" \
-configuration Debug \
ONLY_ACTIVE_ARCH=NO \
ENABLE_TESTABILITY=YES \
-enableCodeCoverage YES \
clean build test | xcpretty -c;
- name: Pod Lint
run: pod lib lint --platforms=ios,tvos --allow-warnings
- name: Code Coverage Report
working-directory: HelloMixpanel/build/Logs/Test
run: |
xcrun xccov view --report --files-for-target Mixpanel.framework *.xcresult
xcrun xccov view --report --only-targets *.xcresult