Skip to content

Commit dda7db3

Browse files
Create Android Lint workflow
This workflow runs Android Lint on push and pull request events for the main branch.
1 parent 467602b commit dda7db3

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

.github/workflows/android-lint.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Android Lint
2+
run-name: Running Android Lint
3+
4+
on:
5+
push:
6+
branches:
7+
- 'main'
8+
pull_request:
9+
branches:
10+
- 'main'
11+
12+
jobs:
13+
android-lint:
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- uses: actions/checkout@v3
18+
- name: set up JDK 17
19+
uses: actions/setup-java@v3
20+
with:
21+
java-version: '17'
22+
distribution: 'temurin'
23+
cache: gradle
24+
25+
- name: Run Lint
26+
run: ./gradlew lint
27+
continue-on-error: false

0 commit comments

Comments
 (0)