-
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.
- Loading branch information
Showing
4 changed files
with
76 additions
and
0 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,23 @@ | ||
--- | ||
name: Bug Report | ||
about: '🐞 - 버그가 생겼나요? 버그를 등록하고, 관리해보세요!' | ||
title: '[BUG] ' | ||
assignees: '' | ||
--- | ||
|
||
## 🤷 버그 내용 | ||
**어떤 버그인지 자세히 설명해주세요.** | ||
|
||
## 🙇 재현 방법 | ||
**아래와 같이 작성해주세요.** | ||
|
||
1. | ||
2. | ||
3. | ||
4. | ||
|
||
## ✨ 예상한 결과 | ||
**예상했던 결과는 어떤 것이었는지 알려주세요.** | ||
|
||
## 📸 동작 로그 또는 스크린샷 | ||
**가능한 경우 문제를 파악하는 데 도움이 될만한 로그를 추가해주세요.** |
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,16 @@ | ||
--- | ||
name: Feature Request | ||
about: '✨ - 개발할 기능이 생겼나요? 작업할 기능을 구체화 시켜보세요!' | ||
title: '[FEATURE] ' | ||
assignees: '' | ||
--- | ||
|
||
## 💣 기능 설명 | ||
**어떤 기능을 개발하실 건가요? 간단하게 작성해주세요!** | ||
|
||
## 🔨 태스크 | ||
**기능이 개발되기까지 필요한 태스크를 작성해주세요.** | ||
- [ ] | ||
|
||
## 🎸 기타 | ||
**해당 이슈에서 참고할 사항이나 그 외 필요한 내용을 작성해주세요.** |
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,6 @@ | ||
## 🔍 What is this PR? | ||
**이 PR은 어떤 것이 변화했나요? 설명해주세요** | ||
- 이슈 넘버: | ||
|
||
## ✅ 체크 리스트 | ||
- [ ] **테스트 계획 또는 완료된 사항의 체크리스트를 작성해주세요.** |
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,31 @@ | ||
# This workflow will build a .NET project | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net | ||
|
||
name: ci | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup .NET | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: 8.0.x | ||
- name: Add NuGet Sources | ||
run: dotnet nuget add source --username hanum-Shared --password ${{ secrets.NUGET_AUTH_TOKEN }} --store-password-in-clear-text --name hanum "https://nuget.pkg.github.com/hansei-hanum/index.json" | ||
- name: Restore dependencies | ||
run: dotnet restore | ||
- name: Build | ||
run: dotnet build --no-restore | ||
- name: Test | ||
run: dotnet test --no-build --verbosity normal |