mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-13 13:50:30 +05:30
20 lines
434 B
YAML
20 lines
434 B
YAML
name: reviewdog
|
|
on: [pull_request]
|
|
permissions: write-all
|
|
jobs:
|
|
ktlint:
|
|
name: Check Code Quality
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 1
|
|
- name: ktlint
|
|
uses: ScaCap/action-ktlint@v1.8.0
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
reporter: github-pr-check
|
|
android: true
|
|
fail_on_error: true
|