Merge remote-tracking branch 'origin/main' into 15_add_modifier_exten… #4
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: Lint and Static Analysis | |
on: | |
pull_request: | |
branches: [] | |
push: | |
branches: [] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up JDK | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '17' | |
- name: Run Detekt Linter | |
run: ./gradlew detektCheck | |
- name: Run Android Lint | |
run: ./gradlew lintDebug |