Skip to content

[Feat] #214 - 회원탈퇴 SoftDelete 구현 #165

[Feat] #214 - 회원탈퇴 SoftDelete 구현

[Feat] #214 - 회원탈퇴 SoftDelete 구현 #165

Workflow file for this run

name: CI
on:
pull_request:
branches: [ "develop" ]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: checkout
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: '17'
- name: application.yaml 작성
run: |
cd moonshot-api/src/main/resources
echo "${{ secrets.APPLICATION }}" > ./application-deploy.yaml
echo "${{ secrets.DATA }}" > ./data.sql
- name: build
run: |
chmod +x gradlew
./gradlew moonshot-api:build -x test
shell: bash