mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-13 22:00:30 +05:30
19 lines
409 B
YAML
19 lines
409 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.3
|
|
with:
|
|
github_token: ${{ secrets.ACCESS_TOKEN }}
|
|
reporter: github-pr-review
|
|
android: true
|
|
fail_on_error: true
|