Merge pull request #227 from Team-Finly/feat/record-226-feedback-refa… #289
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: CI - Build | |
| on: | |
| # PR이 develop 브랜치로 들어올 때 실행 | |
| pull_request: | |
| branches: ["develop"] | |
| # develop 브랜치에 직접 push할 때도 실행 | |
| push: | |
| branches: ["develop"] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: "21" | |
| cache: gradle | |
| - name: Build (skip tests) | |
| run: | | |
| chmod +x ./gradlew | |
| ./gradlew clean build -x test |