-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Issue/#57
- Loading branch information
Showing
2 changed files
with
59 additions
and
6 deletions.
There are no files selected for viewing
This file contains 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 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,52 @@ | ||
name: Test | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] # main 브랜치에 push가 발생하면 workflow가 실행됩니다. | ||
pull_request: | ||
branches: [ "main", "issue/*", "develop" ] | ||
permissions: write-all | ||
|
||
jobs: | ||
ci: | ||
runs-on: ubuntu-latest | ||
|
||
# set up java | ||
steps: | ||
- name: Checkout Repository # 저장소를 체크아웃합니다. | ||
uses: actions/checkout@v4 | ||
|
||
- name: Cache Gradle dependencies # Gradle 의존성을 캐시합니다. | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
~/.gradle/caches | ||
~/.gradle/wrapper | ||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | ||
restore-keys: | | ||
${{ runner.os }}-gradle- | ||
- name: Set up JDK 17 # JDK 17을 설정합니다. | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '17' | ||
distribution: 'adopt' | ||
|
||
- name: Gradle 명령 실행을 위한 권한을 부여합니다 | ||
run: chmod +x ./gradlew | ||
|
||
- name: Gradle build를 수행합니다. | ||
run: ./gradlew clean build | ||
|
||
- name: 테스트 결과를 PR에 코멘트로 등록합니다 | ||
uses: EnricoMi/publish-unit-test-result-action@v1 | ||
if: always() | ||
with: | ||
files: '**/build/test-results/test/TEST-*.xml' | ||
|
||
- name: 테스트 실패 시, 실패한 코드 라인에 Check 코멘트를 등록합니다 | ||
uses: mikepenz/action-junit-report@v3 | ||
if: always() | ||
with: | ||
report_paths: '**/build/test-results/test/TEST-*.xml' | ||
token: ${{ github.token }} |