forked from androidx/androidx
-
Notifications
You must be signed in to change notification settings - Fork 81
40 lines (37 loc) · 964 Bytes
/
ios-pr.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: iOS Unit tests
on:
workflow_dispatch:
pull_request:
push:
branches:
- "jb-main"
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions:
contents: read
actions: read
checks: write
pull-requests: write
jobs:
unit-tests:
runs-on: macos-13
name: iOS Unit tests on MacOS-13
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'zulu'
- name: install Android SDK
run: ./jbdeps/android-sdk/downloadAndroidSdk
- name: Run UIKit tests
run: ./gradlew :mpp:testUIKit --info
- name: Generate report (Test Reporter)
uses: dorny/test-reporter@v1
if: always()
with:
name: UIKit Tests Results
path: out/androidx/compose/ui/ui/build/test-results/**/TEST*.xml
reporter: java-junit