v1.2.0 배포용 디펜던시 오류 수정 #408
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: Kotlin Lint Check | |
on: | |
pull_request: | |
paths: | |
- android/** | |
jobs: | |
ktlint: | |
name: Check Kotlin Format | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@v4 | |
- name: ktlint | |
uses: ScaCap/action-ktlint@master | |
with: | |
filter_mode: file | |
github_token: ${{ secrets.github_token }} | |
reporter: github-pr-review |