fix: 삭제된 회원의 예약정보를 올바르게 가져오도록 개선 #29
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
on: | |
pull_request: | |
branches: | |
- develop | |
jobs: | |
build_application: | |
name: test application | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
# Test Project | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: 'temurin' | |
- name: Set Redis | |
run: docker compose -f docker-compose-test.yml up -d | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0' | |
- name: Set Permission to gradlew | |
run: chmod +x ./gradlew | |
- name: Test with Gradle Wrapper | |
run: ./gradlew test |