Skip to content

Commit e10fd48

Browse files
committed
[+] Checkstyle CI
1 parent 5903bff commit e10fd48

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/gradle-check.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Gradle Checkstyle CI
2+
3+
on: [push]
4+
5+
permissions:
6+
checks: write
7+
actions: read
8+
contents: read
9+
10+
jobs:
11+
build:
12+
name: Gradle Test
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v3
16+
17+
- name: Set up Java JDK
18+
uses: actions/setup-java@v3
19+
with:
20+
java-version: '19'
21+
distribution: 'adopt'
22+
23+
- name: Gradle Wrapper Validation
24+
uses: gradle/wrapper-validation-action@v1
25+
26+
- name: Setup Gradle with Dependency Cache
27+
uses: gradle/[email protected]
28+
29+
- name: Gradle Checkstyle
30+
run: ./gradlew check

0 commit comments

Comments
 (0)