[feat] 사용자 회원탈퇴, 닉네임 수정 #37
Workflow file for this run
This file contains hidden or 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: Test | |
| on: | |
| pull_request: | |
| branches: [ dev ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| env: | |
| PROJECT_DIR: backend | |
| KAKAO_CLIENT: ${{ secrets.KAKAO_CLIENT }} | |
| KAKAO_SECRET: ${{ secrets.KAKAO_SECRET }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '21' | |
| distribution: 'temurin' | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v4 | |
| - name: Run tests | |
| run: ./gradlew test | |
| working-directory: ${{ env.PROJECT_DIR }} | |
| - name: Upload test report | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: junit-test-report | |
| path: ${{ env.PROJECT_DIR }}/build/reports/tests/test | |
| include-hidden-files: true |