Bump androidx.core:core-ktx from 1.13.1 to 1.15.0 #13712
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: Android pull request test | |
on: | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
test_pr: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: gradle/actions/wrapper-validation@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- uses: gradle/gradle-build-action@v3 | |
- name: Check for missing qq strings | |
run: ./scripts/missing-qq.py | |
- name: Build, test, and lint | |
run: ./gradlew clean checkstyle ktlint assembleAlphaRelease lintAlphaRelease testAlphaRelease |