-
Notifications
You must be signed in to change notification settings - Fork 17
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
106 changed files
with
2,814 additions
and
1,615 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,48 @@ | ||
--- | ||
name: "\U0001F41B Bug report" | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: 'type: bug' | ||
assignees: '' | ||
|
||
--- | ||
|
||
<!-- | ||
Please fill in each section to help maintainers to be helpful and quick to respond. | ||
--> | ||
|
||
## Description | ||
|
||
<!-- | ||
Describe issue in general terms. | ||
--> | ||
|
||
## Steps to reproduce | ||
|
||
<!-- | ||
Provide clear steps to reproduce the issue. | ||
--> | ||
|
||
## Versions | ||
|
||
<!-- | ||
Provide at least Python, Django and application version. | ||
--> | ||
|
||
## Expected behaviour | ||
|
||
<!-- | ||
Provide what you would have expected to happen. | ||
--> | ||
|
||
## Actual behaviour | ||
|
||
<!-- | ||
Provide what happened. | ||
--> | ||
|
||
## Additional information | ||
|
||
<!-- | ||
Add any other information. | ||
--> |
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,42 @@ | ||
--- | ||
name: "\U0001F389 Feature request" | ||
about: Share your idea, let's discuss it! | ||
title: '' | ||
labels: 'type: feature' | ||
assignees: '' | ||
|
||
--- | ||
|
||
<!-- | ||
Please fill in each section to help maintainers to be helpful and quick to respond. | ||
--> | ||
|
||
## Description | ||
|
||
<!-- | ||
Describe the feature in general terms. | ||
--> | ||
|
||
## Use cases | ||
|
||
<!-- | ||
What use cases these feature will address? | ||
--> | ||
|
||
## Proposed solution | ||
|
||
<!-- | ||
A clear and concise description of what you want to happen. | ||
--> | ||
|
||
## Alternatives | ||
|
||
<!-- | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
--> | ||
|
||
## Additional information | ||
|
||
<!-- | ||
Add any other information. | ||
--> |
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,10 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: pip | ||
directory: "/" | ||
schedule: | ||
interval: weekly | ||
open-pull-requests-limit: 10 | ||
reviewers: | ||
- yakky | ||
versioning-strategy: lockfile-only |
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,41 @@ | ||
name: Code quality | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
if: "!contains(github.event.head_commit.message, '[skip ci]')" | ||
strategy: | ||
matrix: | ||
python-version: [3.8] | ||
toxenv: [pep8, isort, black, pypi-description, docs, towncrier] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
repository: ${{ github.event.pull_request.head.repo.full_name }} | ||
ref: ${{ github.event.pull_request.head.ref }} | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Cache pip | ||
uses: actions/cache@v1 | ||
with: | ||
path: ~/.cache/pip | ||
key: ${{ runner.os }}-pip-${{ matrix.toxenv }} | ||
restore-keys: | | ||
${{ runner.os }}-pip-${{ matrix.toxenv }} | ||
- name: Cache tox | ||
uses: actions/cache@v1 | ||
with: | ||
path: .tox | ||
key: ${{ runner.os }}-lint-${{ matrix.toxenv }}-${{ hashFiles('setup.cfg') }} | ||
restore-keys: | | ||
${{ runner.os }}-lint-${{ matrix.toxenv }}- | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip setuptools tox>=1.8 | ||
- name: Test with tox | ||
run: | | ||
tox -e${{ matrix.toxenv }} |
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
Oops, something went wrong.