fix: 그룹 투표 목록 조회 시 PENDING/REJECTED 투표 응답에서 제외 #100
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: Code Style Check | |
| on: | |
| pull_request: | |
| branches: [ main, develop ] | |
| jobs: | |
| code-style: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 🐵 Checkout Repository | |
| uses: actions/checkout@v3 | |
| - name: 🐵 Set up JDK 21 | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '21' | |
| - name: 🐵 Grant execute permission for gradlew | |
| run: chmod +x ./gradlew | |
| - name: 🐵 Run Spotless Check | |
| run: ./gradlew spotlessCheck | |
| - name: 🐵 Run Checkstyle | |
| run: ./gradlew checkstyleMain |