-
-
Notifications
You must be signed in to change notification settings - Fork 391
35 lines (32 loc) · 913 Bytes
/
review.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
name: analyze and review code
on: [ push, pull_request ]
jobs:
license-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Java 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'
cache: maven
- name: Check with Maven
run: mvn -B -V license:check --file pom.xml
checkstyle:
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Run Checkstyle
uses: nikitasavinov/checkstyle-action@master
with:
checkstyle_config: './src/main/resources/checkstyle.xml'
workdir: './src/main/java'
reporter: 'github-pr-check'
tool_name: 'checkstyle'