hotfix: 패키지 이름 오타 긴급 수정 #10
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: Just Build with JDK 21 | |
| on: | |
| pull_request: | |
| branches: | |
| - 'develop' | |
| push: | |
| branches: | |
| - 'develop' | |
| workflow_dispatch: | |
| jobs: | |
| build_and_ci: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| id-token: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '21' | |
| distribution: 'temurin' | |
| cache: gradle | |
| - name: Grant execute permission to gradlew | |
| run: chmod +x ./gradlew | |
| - name: Test And Build with Gradle | |
| run: ./gradlew clean build |