@Async + @Transactional 사용 시 데이터 불일치 문제 해결 #54
Workflow file for this run
This file contains hidden or 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: Test Coverage with Codecov | |
| on: | |
| push: | |
| branches: | |
| - 'develop' | |
| - 'main' | |
| pull_request: | |
| branches: | |
| - 'develop' | |
| - 'main' | |
| jobs: | |
| test-coverage: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '21' | |
| distribution: 'temurin' | |
| - name: Set up Gradle | |
| uses: gradle/actions/setup-gradle@v4 | |
| - name: Grant execute permission for gradlew | |
| run: chmod +x ./gradlew | |
| shell: bash | |
| - name: Build with Gradle | |
| run: ./gradlew test | |
| shell: bash | |
| - name: Upload coverage reports to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| slug: sgn07124/InsightPrep | |
| files: ./build/reports/jacoco/test/jacocoTestReport.xml |