Skip to content

docs(12-06): record checkpoint position at Task 2 live-login UAT #1223

docs(12-06): record checkpoint position at Task 2 live-login UAT

docs(12-06): record checkpoint position at Task 2 live-login UAT #1223

Workflow file for this run

name: Test
on: [push, workflow_dispatch]
env:
SCHEME_NAME: 'EhPanda'
DEVELOPER_DIR: /Applications/Xcode_26.5.app
jobs:
Test:
runs-on: macos-26
if: ${{ !contains(github.event.head_commit.message, '[skip test]') }}
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install iOS 26 Platform
uses: nick-fields/retry@v4
with:
retry_on: error
max_attempts: 10
timeout_minutes: 999
command: xcodebuild -downloadPlatform iOS
- name: Show Xcode version
run: xcodebuild -version
- name: Run tests
run: xcodebuild clean test
-skipMacroValidation
-skipPackagePluginValidation
-scheme ${{ env.SCHEME_NAME }}
-destination 'platform=iOS Simulator,name=iPhone Air'