Skip to content

docs: add inline docs for both new and deprecated API (#45) #195

docs: add inline docs for both new and deprecated API (#45)

docs: add inline docs for both new and deprecated API (#45) #195

Workflow file for this run

name: Build
on:
push:
jobs:
tests:
name: Test the SDK with a Demo App
runs-on: macos-15
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Run tests
run: "./scripts/run-tests.sh"
build:
name: Build Artifacts
runs-on: macos-15
steps:
- name: Checkout
uses: actions/checkout@v3
- name: "Build tvOS XCFramework"
run: "./scripts/create-dynamic-framework-tvos.sh"
- name: "Upload tvOS XCFramework"
uses: actions/upload-artifact@v3
with:
name: "MuxStatsGoogleIMAPluginTVOS.xcframework.zip"
path: "MuxStatsGoogleIMAPluginTVOS.xcframework.zip"
- name: "Build iOS XCFramework"
run: "./scripts/create-dynamic-framework-ios.sh"
- name: "Upload iOS XCFramework"
uses: actions/upload-artifact@v3
with:
name: "MuxStatsGoogleIMAPlugin.xcframework.zip"
path: "MuxStatsGoogleIMAPlugin.xcframework.zip"