-
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
3 changed files
with
93 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,28 @@ | ||
--- | ||
name: Отчет об ошибке | ||
about: Создайте отчет об ошибке, чтобы улучшить приложение | ||
title: '' | ||
labels: bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Опишите ошибку** | ||
Ясное и краткое описание ошибки. | ||
|
||
**Последовательность действий для воспроизведения** | ||
Шаги по воспроизведению ошибки. | ||
|
||
**Ожидаемый результат** | ||
Ясное и краткое описание того, что вы ожидали. | ||
|
||
**Скриншоты** | ||
Если возможно, добавьте скриншоты, чтобы объяснить проблему. | ||
|
||
**Окружение:** | ||
- ОС: [например windows 10] | ||
- Версия Java [например 19] | ||
- Версия приложения[например 2020.1] | ||
|
||
**Дополнительный контекст** | ||
Любой другой контекст проблемы. |
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,20 @@ | ||
--- | ||
name: Запрос новой функциональности | ||
about: Предложите идею для этого проекта | ||
title: '' | ||
labels: 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,45 @@ | ||
name: Unit Tests | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
branches: | ||
- 'master' | ||
- 'develop' | ||
push: | ||
branches: | ||
- 'master' | ||
- 'develop' | ||
|
||
jobs: | ||
tests: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up JDK | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '11' | ||
distribution: 'liberica' | ||
cache: maven | ||
|
||
- name: Maven Tests | ||
run: mvn --batch-mode clean test | ||
|
||
- name: Test Coverage | ||
uses: codecov/codecov-action@v3 | ||
|
||
- name: SonarCloud Analyze | ||
run: > | ||
mvn --batch-mode sonar:sonar | ||
-Dsonar.projectKey=spacious-team_table-wrapper-spring-boot-starter | ||
-Dsonar.organization=spacious-team | ||
-Dsonar.host.url=https://sonarcloud.io | ||
-Dsonar.login=$SONAR_TOKEN | ||
-Dsonar.coverage.jacoco.xmlReportPaths=./target/site/jacoco/jacoco.xml | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |