feat: 바텀시트에서 자료를 별도로 표시할 수 있도록 정보 추가 #92
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: pr-ci | |
| on: | |
| pull_request: | |
| branches: ["main"] | |
| permissions: | |
| contents: read | |
| jobs: | |
| verify-build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK 21 (Temurin) | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: "21" | |
| - name: Grant execute permission to Gradle wrapper | |
| run: chmod +x gradlew | |
| - name: Gradle build (without tests) | |
| run: ./gradlew clean build -x test | |
| - name: Docker build (no push) | |
| run: docker build -t pr-check:local . | |
| - name: Validate docker-compose.yml (no run, warnings ok) | |
| run: | | |
| echo "APP_IMAGE=hello-world:latest" > .env | |
| docker compose -f docker-compose.yml --env-file .env config |