[BE] refactor: 이전의 review 테이블을 삭제하고, new_review 테이블만을 사용하도록 변경 #782
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: Build test with Gradle | |
on: | |
push: | |
branches: | |
- develop | |
paths: | |
- 'backend/**' | |
pull_request: | |
branches: | |
- develop | |
paths: | |
- 'backend/**' | |
jobs: | |
build: | |
permissions: | |
contents: read | |
issues: read | |
checks: write | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout to current repository | |
uses: actions/checkout@v4 | |
- name: Setup JDK Corretto using cached gradle dependencies | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'corretto' | |
java-version: 17 | |
cache: 'gradle' | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
with: | |
gradle-version: 8.8 | |
- name: Build and test with gradle | |
run: | | |
cd ./backend | |
./gradlew test | |
- name: Publish test results | |
uses: EnricoMi/publish-unit-test-result-action@v2 | |
if: always() | |
with: | |
files: | | |
./backend/build/test-results/**/*.xml |