run android build only nightly and if changed #3
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 Lint | |
on: | |
push: | |
branches: | |
- 'master' | |
pull_request: | |
branches-ignore: | |
- 'master' | |
jobs: | |
checkLint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: gradle | |
- name: Build app | |
run: ./gradlew lint -x :rclone:buildAll |