-
Notifications
You must be signed in to change notification settings - Fork 0
Feat: Code Coverage 적용 #5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
cd50946
[#4] feat: 기본 테스트 제거
west-eastH c163e6d
[#4] feat: 롬복 어노테이션 커버리지 대상 제외
west-eastH 1d01033
[#4] feat: Github Actions 스크립트 작성
west-eastH ebdf00e
[#4] feat: jacoco 플러그인 설치
west-eastH af069ad
[#4] feat: 기본 테스트 코드 제거
west-eastH 0dcecd8
[#4] test: 테스트 커버리지 테스트 코드 작성
west-eastH ea83cf7
[#4] test: 테스트 커버리지 테스트 코드 작성
west-eastH 17f5e0d
[#4] test: 테스트 커버리지 테스트 코드 작성
west-eastH 8cae8fa
[#4] test: 테스트 커버리지 테스트 코드 제거
west-eastH 7fcae7d
[#4] test: jacoco.yml .env 파일 생성 방식으로 수정
west-eastH 0d2bd17
[#4] test: jacoco.yml .env 파일 생성 방식으로 수정
west-eastH File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| name: PR Test | ||
|
|
||
| on: | ||
| pull_request: | ||
| types: [ opened, synchronize, reopened ] | ||
|
|
||
| permissions: write-all | ||
|
|
||
| jobs: | ||
| test: | ||
| runs-on: ubuntu-22.04 | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| with: | ||
| fetch-depth: 0 | ||
|
|
||
| - name: Set up JDK 17 | ||
| uses: actions/setup-java@v4 | ||
| with: | ||
| distribution: 'temurin' | ||
| java-version: '17' | ||
|
|
||
| - name: Create .env file for CI environment | ||
| run: echo "${{ secrets.ENV_FILE_CONTENT }}" > .env | ||
|
|
||
| - name: Grant execute permission for gradlew | ||
| run: chmod +x gradlew | ||
|
|
||
| - name: Test with Gradle | ||
| run: ./gradlew test | ||
|
|
||
| - name: Test Coverage Report | ||
| id: jacoco | ||
| uses: madrapps/jacoco-report@v1.7.1 | ||
| with: | ||
| title: Test Coverage Report | ||
| paths: ${{ github.workspace }}/build/reports/jacoco/test/jacocoTestReport.xml | ||
| token: ${{ secrets.GITHUB_TOKEN }} | ||
| min-coverage-overall: 50 | ||
| min-coverage-changed-files: 70 |
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| lombok.addLombokGeneratedAnnotation = true |
This file was deleted.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
여기에 제외할 클래스 넣으면 되는거군요!