[COT-98] Fix: API 엔드포인트 리소스가 중복되어 내려가는 이슈 수정 #267
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: complie-test | |
on: | |
pull_request: | |
branches: [ "develop" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'zulu' | |
- name: Grant permission for gradlew | |
run: chmod +x ./gradlew | |
shell: bash | |
- name: Build with Gradle Wrapper | |
run: ./gradlew build |