[KAN-104] 음식점 통합테스트 추가 - 카테고리 API 패키지 잘못된부분 수정 + 테스트코드 추가 #180
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: Ktlint | |
on: pull_request | |
jobs: | |
build-and-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set Up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Grant Execute Permission For Gradlew | |
run: chmod +x gradlew | |
- name: Ktlint & Detekt Check | |
run: ./gradlew check -x test |