🔨 [Refactoring] Admin 공유일정 조회 API -> 분류별 일정조회 API로 변경 #1091 #786
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: 👮Checkstyle validation | |
on: | |
pull_request: | |
branches: [ main, dev , recruit-dev] | |
jobs: | |
checkstyle: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Main checkstyle | |
run: ./gradlew --console verbose clean checkstyleMain | |
- name: ️Test checkstyle | |
run: ./gradlew --console verbose clean checkstyleTest | |
- name: ️TestFixture checkstyle | |
run: ./gradlew --console verbose clean checkstyleTestFixture |