We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d66b506 commit 6bb712bCopy full SHA for 6bb712b
.github/workflows/main.yml
@@ -0,0 +1,28 @@
1
+name: Checkstyle and Spotless
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
8
+ workflow_dispatch:
9
10
+jobs:
11
+ verify:
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - name: Checkout code
16
+ uses: actions/checkout@v3
17
18
+ - name: Set up JDK 17
19
+ uses: actions/setup-java@v3
20
+ with:
21
+ java-version: 17
22
+ distribution: 'temurin'
23
24
+ - name: Grant execute permission for gradlew
25
+ run: chmod +x ./gradlew
26
27
+ - name: Run Spotless + Checkstyle
28
+ run: ./gradlew check
0 commit comments