feat: 점역 결과 이름 변경 API 구현 #119
Workflow file for this run
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: 🌻 해바라기 서버 CI 자동화 (Github Actions) | |
on: | |
pull_request: | |
branches: | |
- main | |
- develop | |
defaults: | |
run: | |
working-directory: server | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: ✔️ 리포지토리 가져오기 | |
uses: actions/checkout@v4 | |
- name: ✔️ JDK 17 설치 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: ✔️ Gradle 명령 실행 권한 설정 | |
run: chmod +x gradlew | |
- name: ✔️ Gradle build | |
run: ./gradlew build |