Bump androidx.compose:compose-bom from 2025.11.00 to 2025.11.01 (#2115) #6150
This file contains hidden or 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: Unit tests | |
| on: push | |
| jobs: | |
| test: | |
| name: Tests without emulator | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| submodules: true | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: 17 | |
| cache: gradle | |
| - uses: gradle/wrapper-validation-action@v3 | |
| - name: Run lint and unit tests | |
| run: ./gradlew app:lintOseDebug app:testGplayDebugUnitTest | |
| - name: Archive results | |
| uses: actions/upload-artifact@v5 | |
| with: | |
| name: test-results2 | |
| path: | | |
| app/build/outputs/lint* | |
| app/build/reports |