mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-14 14:20:30 +05:30
ccca33f9d0
Bumps [ScaCap/action-ktlint](https://github.com/ScaCap/action-ktlint) from 1.3 to 1.4. - [Release notes](https://github.com/ScaCap/action-ktlint/releases) - [Commits](https://github.com/ScaCap/action-ktlint/compare/1.3...1.4) --- updated-dependencies: - dependency-name: ScaCap/action-ktlint dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
19 lines
408 B
YAML
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
|