[YSS-60] 레빗 엠큐 도커 컴포즈로 컨테이너화 및 알림 로직 변경 #67
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: yakssok-pr-check | |
| on: | |
| pull_request: | |
| branches: [ "main", "dev" ] | |
| types: [opened, synchronize, reopened] | |
| permissions: | |
| contents: read | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 🔽 Checkout code | |
| uses: actions/checkout@v4 | |
| - name: ☕ Set up Java 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '17' | |
| - name: 🔧 Make gradlew executable | |
| working-directory: ./yakssok | |
| run: chmod +x gradlew | |
| - name: 🛠 Build (without retesting) | |
| working-directory: ./yakssok | |
| run: ./gradlew build -x test |