[UNTIL-15054] Input engine migration from jitpack to maven central #28
Workflow file for this run
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: Android CI - PR checks | |
| on: | |
| pull_request: | |
| branches-ignore: [ "master" ] | |
| jobs: | |
| pr-checks: | |
| name: Run full PR check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checking out branch | |
| uses: actions/checkout@v4 | |
| - name: set up JDK 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '17' | |
| distribution: 'temurin' | |
| cache: gradle | |
| - name: Setup Android SDK | |
| uses: android-actions/setup-android@v3 | |
| - name: Run Spotless Code Analysis | |
| run: ./gradlew spotlessCheck | |
| - name: Run Unit tests | |
| run: ./gradlew testDebug |