[refactor] #150 builder 메서드 접근제어자 public -> private 변경 #110
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: BUILD CHECK CI | |
| on: | |
| pull_request: | |
| branches: ["main", "release/**"] | |
| jobs: | |
| build: | |
| name: Build Test | |
| runs-on: ubuntu-latest | |
| env: | |
| JWT_SECRET_KEY: ${{ secrets.JWT_SECRET_KEY }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - 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: Build with Gradle | |
| run: ./gradlew -x test clean build |