Update dependency androidx.test.uiautomator:uiautomator to v2.4.0 #1693
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: snapshots sample app | |
| on: | |
| # Intentionally run on all pushes to main branch to ensure we always have a base build with snapshots | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| paths: | |
| - gradle/** | |
| - gradle-plugin/** | |
| - snapshots/** | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: '21' | |
| distribution: 'adopt' | |
| - name: Set up Gradle | |
| uses: gradle/actions/setup-gradle@v4 | |
| - name: Emerge snapshots | |
| run: ./gradlew :snapshots:sample:app:emergeUploadSnapshotBundleDebug | |
| env: | |
| EMERGE_API_TOKEN: ${{ secrets.EMERGE_API_KEY }} | |
| PR_SHA: ${{ github.event.pull_request.head.sha }} | |
| PR_BASE_SHA: ${{ github.event.pull_request.base.sha }} |