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 61858ca commit fc3a5d1Copy full SHA for fc3a5d1
.github/workflows/ktlint.yaml
@@ -0,0 +1,21 @@
1
+name: Ktlint Check
2
+
3
+on: [workflow_dispatch, pull_request]
4
5
+jobs:
6
+ ktlint:
7
+ name: "Run Ktlint Check"
8
+ runs-on: ubuntu-22.04
9
10
+ steps:
11
+ - name: "Checkout branch"
12
+ uses: actions/checkout@v4
13
14
+ - name: "Set up JDK 17"
15
+ uses: actions/setup-java@v4
16
+ with:
17
+ distribution: temurin
18
+ java-version: 17
19
20
+ - name: "Run Ktlint Check"
21
+ run: ./gradlew ktlintCheck
0 commit comments