Add Privacy manifest file to the package #105
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test-iOS | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
iOS: | |
name: Test iOS | |
runs-on: macOS-latest | |
timeout-minutes: 15 | |
strategy: | |
fail-fast: false | |
matrix: | |
xcode: [ | |
"14.2" | |
] | |
destination: [ | |
"platform=iOS Simulator,OS=16.2,name=iPhone 14 Pro" | |
] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
xcode-version: ${{ matrix.xcode }} | |
- name: Build and test | |
run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild -scheme Easing -destination "${{ matrix.destination }}" clean test | xcpretty |