Skip to content

[개선] Shop 엔티티 식별자 UUID로 개선(issue#85) #41

[개선] Shop 엔티티 식별자 UUID로 개선(issue#85)

[개선] Shop 엔티티 식별자 UUID로 개선(issue#85) #41

name: Mealkitary Test Coverage Automation
permissions:
checks: write
pull-requests: write
on:
pull_request:
branches:
- 'develop'
- 'main'
jobs:
code-coverage:
if: ${{ contains(github.event.*.labels.*.name, format('run{0} gradle test', ':')) }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Firebase 시크릿 생성
run: |
echo ${{ secrets.ENCODED_FIREBASE_JSON }} | base64 -d > ./mealkitary-infrastructure/adapter-firebase-notification/src/main/resources/firebase.json
- name: JDK 11 구성
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
cache: 'gradle'
- name: Gradlew wrapper 실행 권한 부여
run: chmod +x gradlew
- name: Gradle 테스트
run: ./gradlew test
- name: 테스트 결과 출력
uses: EnricoMi/publish-unit-test-result-action@v2
if: ${{ always() }}
with:
files: |
./mealkitary-api/build/test-results/**/*.xml
./mealkitary-domain/build/test-results/**/*.xml
./mealkitary-application/build/test-results/**/*.xml
./mealkitary-infrastructure/adapter-persistence-spring-data-jpa/build/test-results/**/*.xml
./mealkitary-infrastructure/adapter-paymentgateway-tosspayments/build/test-results/**/*.xml
./mealkitary-infrastructure/adapter-firebase-notification/build/test-results/**/*.xml
./mealkitary-infrastructure/adapter-business-registration-number-validator/simple-brn-validator/build/test-results/**/*.xml
./mealkitary-infrastructure/adapter-business-registration-number-validator/open-api-brn-validator/build/test-results/**/*.xml
./mealkitary-infrastructure/adapter-address-resolver/build/test-results/**/*.xml
- name: Jacoco Coverage 리포트 전송
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: |
./mealkitary-api/build/reports/jacoco/test/jacocoTestReport.xml,
./mealkitary-domain/build/reports/jacoco/test/jacocoTestReport.xml,
./mealkitary-application/build/reports/jacoco/test/jacocoTestReport.xml,
./mealkitary-infrastructure/adapter-persistence-spring-data-jpa/build/reports/jacoco/test/jacocoTestReport.xml,
./mealkitary-infrastructure/adapter-paymentgateway-tosspayments/build/reports/jacoco/test/jacocoTestReport.xml,
./mealkitary-infrastructure/adapter-firebase-notification/build/reports/jacoco/test/jacocoTestReport.xml,
./mealkitary-infrastructure/adapter-business-registration-number-validator/simple-brn-validator/build/reports/jacoco/test/jacocoTestReport.xml,
./mealkitary-infrastructure/adapter-business-registration-number-validator/open-api-brn-validator/build/reports/jacoco/test/jacocoTestReport.xml,
./mealkitary-infrastructure/adapter-address-resolver/build/reports/jacoco/test/jacocoTestReport.xml
name: mealkitary-codecov
verbose: true