[fix] 클라 요구에 따라 api response 필드명 일치 작업 진행 -> weekDate: 날짜, weekDay: 요일 #53
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: BUILD CHECK CI | |
on: | |
pull_request: | |
branches: ["main", "release/**"] | |
jobs: | |
build: | |
name: Build Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Jdk 21 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build with Gradle | |
run: ./gradlew -x test clean build # build 잘 되는지 확인용으로 진행 | |