Skip to content

[๋ฐฐํฌ] v0.3.0(PR#55, PR#57) #10

[๋ฐฐํฌ] v0.3.0(PR#55, PR#57)

[๋ฐฐํฌ] v0.3.0(PR#55, PR#57) #10

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
- 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
name: mealkitary-codecov
verbose: true