fix: 자료 포함 조회 쿼리에서 자료만 조회하던 문제 해결 #85
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 |