Skip to content

Commit

Permalink
Enable ui:ui module tests using GitHub Action
Browse files Browse the repository at this point in the history
Co-authored-by: dima.avdeev <dima.avdeev@jetbrains.com>
  • Loading branch information
ASalavei and dima-avdeev-jb authored Dec 20, 2023
1 parent 74f2594 commit 029ab22
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 1 deletion.
48 changes: 48 additions & 0 deletions .github/workflows/ios-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
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: iOS Unit tests results
path: out/androidx/compose/**/**/build/test-results/**/TEST*.xml
reporter: java-junit
- name: Generate report (Publish Test Results)
uses: EnricoMi/publish-unit-test-result-action/composite@v2
if: always()
with:
files: |
out/androidx/compose/ui/ui/build/test-results/**/*.xml
out/androidx/compose/ui/ui/build/test-results/**/*.trx
out/androidx/compose/ui/ui/build/test-results/**/*.json
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,8 @@ class DialogState(
Dialog(
onDismissRequest = onDismissRequest,
properties = DialogProperties(
dismissOnClickOutside = dismissOnClickOutside
dismissOnClickOutside = dismissOnClickOutside,
usePlatformInsets = false
)
) {
with(LocalDensity.current) {
Expand Down

0 comments on commit 029ab22

Please sign in to comment.