-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ [Merge] 토너먼트 기능 포함된 dev 브랜치 merge (#368)
- Loading branch information
Showing
196 changed files
with
11,037 additions
and
1,583 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: "🐛 Bug " | ||
description: "Bug 발생 시 작성해주세요." | ||
title: "🐛 [Bug] " | ||
labels: ["bug"] | ||
body: | ||
- type: textarea | ||
id: problem | ||
attributes: | ||
label: Problem | ||
description: 무슨 문제가 발생했는지 설명해주세요. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproduction | ||
attributes: | ||
label: Reproduction | ||
description: 버그 재현 방법을 설명해주세요. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: screenshot | ||
attributes: | ||
label: Screenshot | ||
description: 이해를 돕기 위해 스크린샷을 첨부해주세요. | ||
- type: textarea | ||
id: Expected-Behavior | ||
attributes: | ||
label: Expected Behavior | ||
description: 버그가 없었을 때 어떤 결과가 나왔어야 하는지 설명해주세요. | ||
- type: textarea | ||
id: log | ||
attributes: | ||
label: Log | ||
description: 에러 로그를 복사해서 첨부해주세요. | ||
render: Shell | ||
- type: dropdown | ||
id: browser | ||
attributes: | ||
description: 버그가 발생한 브라우저를 선택해주세요. | ||
label: Browser | ||
multiple: true | ||
options: | ||
- Chrome | ||
- Firefox |
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,23 @@ | ||
name: "✨ Feature" | ||
description: "Feature 작업 사항을 입력해주세요." | ||
title: "✨ [Feature] " | ||
labels: ["enhancement"] | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: 이슈에 대한 설명을 입력해주세요. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: todo | ||
attributes: | ||
label: Todo | ||
description: Todo list 를 추가해주세요. | ||
value: "- [ ] todo1" | ||
- type: textarea | ||
id: etc | ||
attributes: | ||
label: ETC | ||
description: 기타 이슈사항을 입력해주세요. |
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,23 @@ | ||
name: "🔨 Refactoring" | ||
description: "Refactoring 작업 사항을 입력해주세요." | ||
title: "🔨 [Refactoring] " | ||
labels: ["refactoring", "enhancement"] | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: 이슈에 대한 설명을 입력해주세요. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: todo | ||
attributes: | ||
label: Todo | ||
description: Todo list 를 추가해주세요. | ||
value: "- [ ] todo1" | ||
- type: textarea | ||
id: etc | ||
attributes: | ||
label: ETC | ||
description: 기타 이슈사항을 입력해주세요. |
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,23 @@ | ||
name: "🧪 Test" | ||
description: "Test 작업 사항을 입력해주세요." | ||
title: "🧪 [Test] " | ||
labels: ["test"] | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: 이슈에 대한 설명을 입력해주세요. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: todo | ||
attributes: | ||
label: Todo | ||
description: Todo list 를 추가해주세요. | ||
value: "- [ ] todo1" | ||
- type: textarea | ||
id: etc | ||
attributes: | ||
label: ETC | ||
description: 기타 이슈사항을 입력해주세요. |
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
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,43 @@ | ||
name: 💻 Test code validation | ||
|
||
on: | ||
pull_request: | ||
branches: [ main, 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 | ||
- name: mv for separate report folder | ||
run: mv ./build/reports/jacoco/test ./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@v2 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
fail_ci_if_error: true | ||
files: ./build/reports/jacoco/unitTest/unitTestReport.xml | ||
flags: unitTest | ||
name: codecov-unit | ||
verbose: true | ||
- name: 👨👨👧👦 Integration Test with Gradle | ||
run: ./gradlew --console verbose clean integrationTestCoverage | ||
- name: 📲 Upload integrationTest coverage to Codecov | ||
uses: codecov/codecov-action@v2 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
fail_ci_if_error: true | ||
files: ./build/reports/jacoco/test/jacocoTestReport.xml | ||
flags: integrationTest | ||
name: codecov-integration | ||
verbose: true |
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -51,4 +51,7 @@ out/ | |
pingping.pem | ||
|
||
### logs ### | ||
./logs/* | ||
./logs/* | ||
|
||
### git commit message convention file ### | ||
.gitmessage.txt |
Oops, something went wrong.