We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3441225 + 92c58d5 commit 64e82b3Copy full SHA for 64e82b3
.github/workflows/format-code.yml
.github/workflows/spotless-check.yml
@@ -0,0 +1,26 @@
1
+name: Check formatting
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
+ paths:
8
+ - "lib/**"
9
+ - "services/**"
10
+ - "buildSrc/**"
11
12
+jobs:
13
+ check-formatting:
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
+ - uses: actions/checkout@v5
18
19
+ - name: Set up JDK
20
+ uses: actions/setup-java@v5
21
+ with:
22
+ distribution: "temurin"
23
+ java-version: "21"
24
25
+ - name: Check formatting
26
+ run: ./gradlew spotlessCheck
0 commit comments