Kotlin Linter
ActionsTags
(2)This GitHub action runs the Kotlin Linter, ktlint.
Optional A list of patterns to pass along to the ktlint
command. Default: **/*.kt
name: ktlint
on:
pull_request:
paths:
- "**/*.kt"
- ".github/workflows/ktlint.yml"
jobs:
ktlint:
runs-on: ubuntu-latest
steps:
- name: "checkout"
uses: actions/checkout@v2
- name: "ktlint"
uses: "vroy/gha-kotlin-linter@v1"
Kotlin Linter is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.