feat: 메인 액티비티에 바텀 내비게이션의 표시 여부를 한 번에 관리하는 로직 추가 #153
Workflow file for this run
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 | |