LibreTube/.github/workflows/lint.yml
2022-06-18 16:05:47 +02:00

19 lines
408 B
YAML

name: reviewdog
on: [pull_request]
jobs:
ktlint:
name: Check Code Quality
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: ktlint
uses: ScaCap/action-ktlint@1.4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
reporter: github-pr-check
android: true
fail_on_error: true