Skip to content

trying out ui tests

trying out ui tests #1

Workflow file for this run

name: Run UI Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
ui-test-ios:
runs-on: macos-15
steps:
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
- name: Unit test Authenticator on iOS
run: |
cd Tests/AuthenticatorHostApp

Check failure on line 16 in .github/workflows/ui_tests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ui_tests.yml

Invalid workflow file

You have an error in your yaml syntax on line 16
xcodebuild test -scheme AuthenticatorHostApp -sdk 'iphonesimulator' -destination 'platform=iOS Simulator,name=iPhone 16 Pro Max,OS=latest' -derivedDataPath Build/ -clonedSourcePackagesDirPath ~/Library/Developer/Xcode/DerivedData/Authenticator | xcpretty --simple --color --report junit && exit ${PIPESTATUS[0]}