Skip to content

[Refactpr][jjaeroong]: 회원탈퇴 시, provider_id를 null로 변경 #320

[Refactpr][jjaeroong]: 회원탈퇴 시, provider_id를 null로 변경

[Refactpr][jjaeroong]: 회원탈퇴 시, provider_id를 null로 변경 #320

Workflow file for this run

name: Run Tests
on:
push:
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Java 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Make application.yml
run: |
cd ./src/main/resources
echo "${{ secrets.APPLICATION_YML }}" > ./application.yml
shell: bash