Skip to content

- Refactor LiveDebug struct #170

- Refactor LiveDebug struct

- Refactor LiveDebug struct #170

Workflow file for this run

name: CI
on: [push]
env:
DEVELOPER_DIR: /Applications/Xcode_14.2.app
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- name: Show Xcode version
run: xcodebuild -version
- name: Cache CocoaPods
uses: actions/cache@v2
with:
path: Example/Pods
key: ${{ runner.os }}-pods-${{ hashFiles('Example/Podfile.lock') }}
restore-keys: |
${{ runner.os }}-pods-
- name: Install cocoapods
run: cd Example;pod install --repo-update
- name: Build
run: cd Example;xcodebuild -workspace HPLiveKit.xcworkspace -scheme HPLiveKit-Example -sdk iphonesimulator -configuration Debug build