🧪 [Test] Admin 템플릿 추가, 제거, 수정 테스트코드 작성 #351
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 ] | |
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 |