-
Notifications
You must be signed in to change notification settings - Fork 9
41 lines (39 loc) · 1.55 KB
/
build.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
name: Build
on:
pull_request:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: set up JDK 18
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 18
- name: Assemble & Linters
run: |
./gradlew :core:apiCheck
./gradlew :core:testDebugUnitTest
./gradlew lint lintKotlin :demo:assembleDebug
- uses: yutailang0119/[email protected]
name: App Lint errors to annotations
if: ${{ failure() }}
continue-on-error: true # lint may be ok
with:
xml_path: app/build/reports/lint-results-debug.xml
- uses: yutailang0119/[email protected]
name: Lib Lint errors to annotations
if: ${{ failure() }}
continue-on-error: true # lint may be ok
with:
xml_path: lib/build/reports/lint-results-debug.xml
- name: KTLint errors to annotations
if: ${{ failure() }}
run: |
jq --raw-output '[.[] | ({ f: .file } + ( .errors[] | { l: .line, c: .column, m: .message, r: .rule } )) | "::error file=core/\(.f),line=\(.l),col=\(.c)::\(.m) [\(.r)]" ] | join("\n")' core/build/reports/ktlint/main-lint.json || true
jq --raw-output '[.[] | ({ f: .file } + ( .errors[] | { l: .line, c: .column, m: .message, r: .rule } )) | "::error file=demo/\(.f),line=\(.l),col=\(.c)::\(.m) [\(.r)]" ] | join("\n")' demo/build/reports/ktlint/main-lint.json || true