Merge pull request #163 from recsater/patch-1 #148
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 CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
lint: | |
name: Spotless check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3.1.0 | |
- name: Set up JDK | |
uses: actions/setup-java@v3.5.1 | |
with: | |
distribution: adopt | |
java-version: 11 | |
- name: spotless | |
run: ./gradlew spotlessCheck | |
api_check: | |
name: API check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3.1.0 | |
- name: Set up JDK | |
uses: actions/setup-java@v3.5.1 | |
with: | |
distribution: adopt | |
java-version: 11 | |
- name: API check | |
run: ./gradlew apiCheck | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3.1.0 | |
- name: set up JDK | |
uses: actions/setup-java@v3.5.1 | |
with: | |
distribution: adopt | |
java-version: 11 | |
- name: Cache Gradle and wrapper | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
- name: Make Gradle executable | |
run: chmod +x ./gradlew | |
- name: Build with Gradle | |
run: ./gradlew build |