[YS-518] fix: INCHEON_ALL
오타 수정 및 region
컬럼 ENUM에서 사용하지 않는 _ALL
값 제거
#34
Workflow file for this run
This file contains hidden or 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: ktlint-code-quality-check | |
on: | |
pull_request: | |
branches: | |
- dev | |
jobs: | |
ktlint: | |
name: Check Code Quality | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Run ktlint via Gradle | |
run: ./gradlew ktlintCheck |