updated gradle and dependency versions #166
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 | |
jobs: | |
lint_checks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Set Up JDK | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.11 | |
- name: Update CLIENT_ID | |
env: | |
CLIENT_ID: ${{ secrets.CLIENT_ID }} | |
run: echo CLIENT_ID="$CLIENT_ID" > ./local.properties | |
- name: Update CLIENT_SECRET | |
env: | |
CLIENT_SECRET: ${{ secrets.CLIENT_SECRET }} | |
run: echo CLIENT_SECRET="$CLIENT_SECRET" >> ./local.properties | |
- name: Run Lint Checks | |
run: ./gradlew detektMain |