Sorting of search results #2320
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/gradle-build-action@v2.4.2 | |
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/gradle-build-action@v2.4.2 | |
with: | |
arguments: assembledebug --stacktrace | |
- name: Run test cases | |
uses: gradle/gradle-build-action@v2.4.2 | |
with: | |
arguments: jacocoTestPlayDebugUnitTestReport --stacktrace --info |