[REFACTOR] Polling에서 사용하지 않는 바디 정보 제거 #332
This file contains 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: BE CI for Dev | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [ "develop" ] | |
paths: | |
- backend/** | |
jobs: | |
build: | |
timeout-minutes: 4 | |
runs-on: [ self-hosted, linux, ARM64, dev ] | |
defaults: | |
run: | |
working-directory: ./backend | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build with Gradle | |
run: ./gradlew test |