Fixes #3938 #2235
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 Feature CI | |
on: | |
pull_request: | |
branches: | |
- 'master' | |
- 'release/*' | |
- 'hotfix/*' | |
concurrency: | |
group: build-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
check_spotless: | |
name: Check spotless | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: "temurin" | |
java-version: 11 | |
- name: Check formatting using spotless | |
uses: gradle/[email protected] | |
with: | |
arguments: spotlessCheck --stacktrace | |
build: | |
name: Build debug and run Jacoco tests | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: "temurin" | |
java-version: 11 | |
- name: Build with Gradle | |
uses: gradle/[email protected] | |
with: | |
arguments: assembledebug --stacktrace | |
- name: Run test cases | |
uses: gradle/[email protected] | |
with: | |
arguments: jacocoTestPlayDebugUnitTestReport --stacktrace --info |