feat: 초대장 생성 및 amazon s3 presigned url 발급 구현 #34
Workflow file for this run
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: 테스트 통과 여부 검사 | |
on: | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
test-result: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: GitHub Checkout | |
uses: actions/checkout@v4 | |
- name: JDK 21 설정 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
- name: Gradle Wrapper 권한 부여 | |
run: chmod +x gradlew | |
- name: Gradle 테스트 | |
run: ./gradlew --info test | |
- name: Test 결과 출력 | |
uses: EnricoMi/publish-unit-test-result-action@v2 | |
if: always() | |
with: | |
junit_files: '**/build/test-results/test/TEST-*.xml' |