[BE] 회원가입 버그 수정, 로그아웃 버그 수정, API 명세 수정, 로그 설정 수정 #147
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: Backend CI | |
on: | |
pull_request: | |
branches: | |
- dev/be | |
- develop | |
- main | |
jobs: | |
build: | |
runs-on: self-hosted | |
steps: | |
- name: 체크아웃 | |
uses: actions/checkout@v4 | |
- name: H2 스프링 설정 생성 | |
run: | | |
echo "spring: | |
h2: | |
console: | |
enabled: true | |
path: /h2-console | |
datasource: | |
url: jdbc:h2:mem:database" > backend/src/main/resources/application.yml | |
- name: 테스트 코드 실행 | |
run: ./gradlew test | |
working-directory: ./backend | |
- name: 클린업 | |
if: always() | |
run: rm -rf ../2024-code-zap/* |