feat: [기록공유] API 통신 구현 #330
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: reviewdog | |
on: | |
pull_request: | |
branches: ["develop"] | |
paths: | |
- .github/workflows/android-lint.yml | |
- '*/src/**' | |
- gradle/** | |
- '**.gradle' | |
- gradle.properties | |
- gradlew* | |
jobs: | |
ktlint: | |
name: Check Code Quality | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@master | |
with: | |
fetch-depth: 1 | |
- name: ktlint | |
uses: ScaCap/action-ktlint@master | |
with: | |
github_token: ${{ secrets.github_token }} | |
reporter: github-pr-review # Change reporter | |
android: true | |
fail_on_error: true | |
level: warning |