✨[Feature] 전체일정 상세조회 API 추가, test 완료 #1056 #791
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: 👮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 |