-
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
8 changed files
with
158 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,38 @@ | ||
--- | ||
name: Bug Report | Feature Idea | ||
about: Report a bug or suggest a feature | ||
title: "Bug Report | Feature Idea:" | ||
labels: bug, enhancement | ||
assignees: "" | ||
--- | ||
|
||
**Bug Report:** | ||
|
||
Bug explanation: [Insert here] | ||
How to reproduce: [Insert here (if not applicable use "N/A")] | ||
What should happen instead: [Insert here (if not applicable use "N/A")] | ||
Minimum reproducible example: | ||
|
||
```python | ||
[Insert here (if not applicable use "N/A")] | ||
``` | ||
|
||
Traceback: | ||
|
||
``` | ||
(if not applicable use "N/A") | ||
``` | ||
|
||
<details> | ||
|
||
OS: [Insert here (if not applicable use "N/A")] | ||
Git branch: [Insert here (if not applicable use "N/A")] | ||
Commit that bug started: [Insert here (if not applicable use "N/A")] | ||
|
||
</details> | ||
|
||
--- | ||
|
||
Feature report: | ||
|
||
Explain your idea, how it could be implemented, and why it should be added. The more detail you give, the more likely it is to be added. Code snippets that could help add it are _highly recommend_. |
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,4 @@ | ||
Fixes #__. | ||
|
||
Changes in 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,17 @@ | ||
name: Isort Formatting | ||
|
||
on: push | ||
|
||
jobs: | ||
formatting-isort: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.11.1 | ||
|
||
- name: Code Formatting (App) | ||
run: | | ||
pip install -r requirements-dev.txt | ||
isort --check . |
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,29 @@ | ||
name: Upload salve to Pypi | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.11.1 | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r requirements-dev.txt | ||
- name: Build and publish to Pypi | ||
env: | ||
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} | ||
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} | ||
run: | | ||
python -m build --sdist | ||
python -m build --wheel | ||
python setup.py sdist | ||
twine upload dist/* |
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,17 @@ | ||
name: Ruff Formatting | ||
|
||
on: push | ||
|
||
jobs: | ||
formatting-ruff: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.11.1 | ||
|
||
- name: Code Formatting (App) | ||
run: | | ||
pip install -r requirements-dev.txt | ||
ruff format --check . |
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,17 @@ | ||
name: Ruff Check | ||
|
||
on: push | ||
|
||
jobs: | ||
ruff-check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.11.1 | ||
|
||
- name: Code Formatting (App) | ||
run: | | ||
pip install -r requirements-dev.txt | ||
ruff check . |
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,18 @@ | ||
name: Code Tests | ||
|
||
on: push | ||
|
||
jobs: | ||
testing: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.11.1 | ||
|
||
- name: Run tests | ||
run: | | ||
pip install . | ||
pip install -r requirements-dev.txt | ||
python3 -m pytest . |
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,18 @@ | ||
name: Code Tests (On Windows) | ||
|
||
on: push | ||
|
||
jobs: | ||
testing-windows: | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.11.1 | ||
|
||
- name: Run tests | ||
run: | | ||
pip install . | ||
pip install -r requirements-dev.txt | ||
python3 -m pytest . -s |