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 8860e90 commit 93a03ceCopy full SHA for 93a03ce
.github/workflows/code-formatting.yml
@@ -0,0 +1,25 @@
1
+# This name is shown in the status badge in the README
2
+name: code-formatting
3
+
4
+on: [push, pull_request]
5
6
+jobs:
7
+ test:
8
+ name: JDK ${{matrix.java}}
9
10
+ runs-on: ubuntu-latest
11
+ strategy:
12
+ matrix:
13
+ java: [11]
14
15
+ steps:
16
+ - name: Check out code
17
+ uses: actions/checkout@v1
18
19
+ - name: Set up JDK
20
+ uses: actions/setup-java@v1
21
+ with:
22
+ java-version: ${{ matrix.java }}
23
24
+ - name: Check code formatting
25
+ run: ./gradlew spotlessCheck
build.gradle
@@ -111,7 +111,6 @@ subprojects {
111
scalafmt('2.6.3').configFile(rootProject.file('scalafmt.conf'))
112
}
113
114
- tasks.check.dependsOn spotlessCheck
115
116
117
allprojects {
0 commit comments