Updated actions and templates
This commit is contained in:
@@ -1,9 +1,8 @@
|
|||||||
---
|
---
|
||||||
name: Bug Report
|
name: Bug Report
|
||||||
about: Create a report to help us improve
|
about: Create a report to help us improve
|
||||||
title: "[BUG]"
|
title: ""
|
||||||
labels: bug
|
labels: bug
|
||||||
assignees: vkbo
|
|
||||||
---
|
---
|
||||||
|
|
||||||
**Describe the Bug**
|
**Describe the Bug**
|
||||||
|
|||||||
@@ -1,19 +1,18 @@
|
|||||||
---
|
---
|
||||||
name: Feature Request
|
name: Feature Request
|
||||||
about: Suggest an idea for this project
|
about: Suggest an idea for this project
|
||||||
title: "[FEATURE]"
|
title: ""
|
||||||
labels: enhancement
|
labels: enhancement
|
||||||
assignees: vkbo
|
|
||||||
---
|
---
|
||||||
|
|
||||||
**Is your feature request related to a problem? Please describe.**
|
**Is your feature request related to a problem? Please describe:**
|
||||||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
||||||
|
|
||||||
**Describe the solution you'd like**
|
**Describe the solution you'd like:**
|
||||||
A clear and concise description of what you want to happen.
|
A clear and concise description of what you want to happen.
|
||||||
|
|
||||||
**Describe alternatives you've considered**
|
**Describe alternatives you've considered:**
|
||||||
A clear and concise description of any alternative solutions or features you've considered.
|
A clear and concise description of any alternative solutions or features you've considered.
|
||||||
|
|
||||||
**Additional context**
|
**Additional context:**
|
||||||
Add any other context or screenshots about the feature request here.
|
Add any other context or screenshots about the feature request here.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
name: Flake 8 Checks
|
name: Flake8 Checks
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
@@ -19,9 +19,9 @@ jobs:
|
|||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
- name: Install flake8
|
- name: Install flake8
|
||||||
run: pip install flake8
|
run: pip install flake8
|
||||||
- name: Check for Syntax Error on novelWriter
|
- name: Check for Syntax Error in novelWriter
|
||||||
run: flake8 nw --count --select=E9,F63,F7,F82 --show-source --statistics
|
run: flake8 nw --count --select=E9,F63,F7,F82 --show-source --statistics
|
||||||
- name: Check for Syntax Error on Tests
|
- name: Check for Syntax Error in Tests
|
||||||
run: flake8 tests --count --select=E9,F63,F7,F82 --show-source --statistics
|
run: flake8 tests --count --select=E9,F63,F7,F82 --show-source --statistics
|
||||||
- name: Check for Code Style on novelWriter
|
- name: Check for Code Style Violations
|
||||||
run: flake8 nw --count --max-line-length=99 --ignore E203,E221,E226,E241,E251,E261,E266,E302,E305 --show-source --statistics
|
run: flake8 nw --count --max-line-length=99 --ignore E203,E221,E226,E241,E251,E261,E266,E302,E305 --show-source --statistics
|
||||||
|
|||||||
Reference in New Issue
Block a user