-
Notifications
You must be signed in to change notification settings - Fork 12
47 lines (43 loc) · 1.21 KB
/
lint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Lint
on:
push:
branches:
- main
pull_request:
env:
GPR_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GPR_USER: ${{ secrets.GITHUB_ACTOR }}
jobs:
static-analysis:
name: Static Analysis
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: '17'
- name: Gradle Run ktlint
run: ./gradlew ktlintCheck --continue
- uses: actions/upload-artifact@v3
name: Upload ktlint report
if: ${{ failure() }}
with:
name: ktlint
path: '**/build/reports/ktlint/'
- name: Gradle Android lint library
run: ./gradlew :library:lintDebug
- uses: actions/upload-artifact@v3
name: Upload library lint report
if: ${{ failure() }}
with:
name: lint
path: 'app/build/reports/library/lint-results-**.html'
- name: Gradle Android lint example
run: ./gradlew :example:lintDebug
- uses: actions/upload-artifact@v3
name: Upload example lint report
if: ${{ failure() }}
with:
name: lint
path: 'app/build/reports/example/lint-results-**.html'