[FIX] 장바구니 API 경로 수정 및 결제 페이지 불러오기 매개변수 required 에러 해결 #31
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: Tattour-Server-Dev CI | |
on: | |
pull_request: | |
branches: [ "dev" ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
- name: make application.properties | |
run: | | |
#mkdir ./server/src/main/resources | |
cd ./server/src/main/resources | |
touch ./application.yaml | |
echo "${{ secrets.TATTOUR_DEV_APPLICATION }}" >> ./application.yaml | |
cat ./application.yaml | |
shell: bash | |
- name: Grant execute permission for gradlew | |
run: chmod +x ./server/gradlew | |
- name: Build with Gradle | |
run: | | |
cd ./server | |
./gradlew build -x test |