-
-
Notifications
You must be signed in to change notification settings - Fork 129
32 lines (28 loc) · 634 Bytes
/
Copy pathktlint.yml
File metadata and controls
32 lines (28 loc) · 634 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: Kotlin Lint Check
on:
pull_request:
branches:
- "main"
paths-ignore:
- ".gitignore"
- "**.md"
- "LICENSE"
- ".idea/**"
- ".github/**"
- ".editorconfig"
- "images/**"
- "metadata/**"
jobs:
ktlint:
name: Check Kotlin Code Format
runs-on: ubuntu-latest
steps:
- name: Clone repo
uses: actions/checkout@v6
- name: Run ktlint
uses: ScaCap/action-ktlint@master
with:
ktlint_version: 1.3.1
filter_mode: nofilter
github_token: ${{ secrets.github_token }}
reporter: github-check