MOBILE-356 / MOBILE-357 #472
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: iOS Testing | |
on: | |
pull_request: | |
branches: | |
- development | |
- master | |
paths: | |
- '.github/**' | |
- 'build.gradle.kts' | |
- 'gradle/**' | |
- 'gradle.properties' | |
- 'gradlew.bat' | |
- 'iosApp/**' | |
- 'local.properties' | |
- 'settings.gradle.kts' | |
- 'shared/build/xcode-frameworks/**' | |
- 'shared/src/commonMain/**' | |
- 'shared/src/iosMain/**' | |
- 'shared/build.gradle.kts' | |
jobs: | |
test: | |
name: Test iOS App | |
runs-on: macOS-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Xcode 16.2 | |
uses: actions/setup-xcode@v3 | |
with: | |
xcode-version: '16.2' | |
- name: Run iOS app tests | |
run: exec ./.github/scripts/test_app.sh |