Add ktlint #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ktlint Check | |
on: [workflow_dispatch, pull_request] | |
jobs: | |
ktlint: | |
name: "Run Ktlint Check" | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: "Checkout branch" | |
uses: actions/checkout@v4 | |
- name: "Set up JDK 17" | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: "Run Ktlint Check" | |
run: ./gradlew ktlintCheck |