Skip to content

feat: capture the screen in-app with ScreenCaptureKit (drop ReplayKit extension) #29

feat: capture the screen in-app with ScreenCaptureKit (drop ReplayKit extension)

feat: capture the screen in-app with ScreenCaptureKit (drop ReplayKit extension) #29

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build (iOS Simulator)
runs-on: macos-26
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Show toolchain
run: |
xcodebuild -version
swift --version
- name: Install XcodeGen
run: brew install xcodegen
- name: Generate Xcode project
run: xcodegen generate
- name: Build
run: |
xcodebuild build \
-scheme Stream \
-destination 'generic/platform=iOS Simulator' \
CODE_SIGNING_ALLOWED=NO \
-skipPackagePluginValidation