-
-
Notifications
You must be signed in to change notification settings - Fork 103
45 lines (43 loc) · 1.42 KB
/
review-suggest.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
name: reviewdog-suggester
on:
pull_request:
types: [opened, synchronize, reopened]
env:
CI: true
jobs:
kotlin:
name: runner / suggester / spotless
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: master
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'
- name: Cache gradle, wrapper and buildSrc
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-${{ github.job }}-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}-${{ hashFiles('**/buildSrc/**/*.kt') }}
restore-keys: |
${{ runner.os }}-${{ github.job }}-
- name: Make gradlew executable
run: chmod +x ./gradlew
- run: ./gradlew spotlessKotlinApply
- uses: reviewdog/action-suggester@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
tool_name: spotless
# Since "reviewdog/action-suggester" using "spotlessKotlinApply" does not work with forked PR,
# perform "spotlessKotlinCheck".
- name: Make gradlew executable
run: chmod +x ./gradlew
- run: ./gradlew spotlessKotlinCheck
- name: Make gradlew executable
run: chmod +x ./gradlew
- run: ./gradlew lintDebug