[fix] DDL 수정 #327
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: PR 테스트 자동화 | |
on: | |
pull_request: | |
branches: [ "main", "feature/*", "develop" ] | |
permissions: | |
checks: write | |
pull-requests: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Repository 로딩 | |
uses: actions/checkout@v3 | |
- name: JDK 21 설치 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '21' | |
distribution: 'temurin' | |
- name: gradlew 접근권한 설정 | |
run: chmod +x gradlew | |
- name: Gradle Project 테스트 | |
run: ./gradlew build | |
- name: 테스트 결과 등록 | |
uses: EnricoMi/publish-unit-test-result-action@v2 | |
if: always() | |
with: | |
files: '**/build/test-results/test/TEST-*.xml' | |
github_token: ${{ github.token }} | |
- name: 테스트 실패 Lines 등록 | |
uses: mikepenz/action-junit-report@v3 | |
if: always() | |
with: | |
report_paths: '**/build/test-results/test/TEST-*.xml' | |
github_token: ${{ github.token }} |