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 202f771 commit c59f373Copy full SHA for c59f373
1 file changed
.github/workflows/build.yml
@@ -129,3 +129,17 @@ jobs:
129
BRANCH: gh-pages
130
FOLDER: build/docs/javadoc
131
CLEAN: true
132
+
133
+ check-formatting:
134
+ name: Check Formatting
135
+ runs-on: ubuntu-latest
136
+ steps:
137
+ - name: Checkout 🛎️
138
+ uses: actions/checkout@v2.3.1
139
+ - name: set up JDK 1.8
140
+ uses: actions/setup-java@v1
141
+ with:
142
+ java-version: 1.8
143
+ - name: Check formatting with Spotless
144
+ run: |
145
+ ./gradlew spotlessJavaCheck spotlessKotlinCheck
0 commit comments