Skip to content

🐛 [Bug] TicketSetup 유무 확인하는 로직 전부 False로 나가는 버그 발생 #1008 #870

🐛 [Bug] TicketSetup 유무 확인하는 로직 전부 False로 나가는 버그 발생 #1008

🐛 [Bug] TicketSetup 유무 확인하는 로직 전부 False로 나가는 버그 발생 #1008 #870

name: 💻 Test code validation
on:
pull_request:
branches: [ main, dev, recruit-dev]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: ️👶 Unit Test with Gradle
run: ./gradlew --console verbose clean unitTestCoverage unitTestCoverageReport -x test
# - name: mv for separate report folder
# run: mv ./gg-pingpong-utils/build/reports/jacoco/unitTestCoverageReport ./build/reports/jacoco/unitTest
# - name: mv for separate report name
# run: mv ./build/reports/jacoco/unitTest/jacocoTestReport.xml ./build/reports/jacoco/unitTest/unitTestReport.xml
- name: 📲 Upload unitTest coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
files: ./gg-utils/build/reports/jacoco/unitTestCoverageReport/unitTestCoverageReport.xml
flags: unitTest
name: codecov-unit
verbose: true
- name: 👨‍👨‍👧‍👦 Integration Test with Gradle
run: ./gradlew --console verbose clean integrationTestCoverage integrationTestCoverageReport -x test
- name: 📲 Upload integrationTest coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
files: ./gg-utils/build/reports/jacoco/integrationTestCoverageReport/integrationTestCoverageReport.xml
flags: integrationTest
name: codecov-integration
verbose: true