Updated actions and templates

This commit is contained in:
Veronica K. B. Olsen
2020-08-14 19:52:02 +02:00
parent 77b1d50e31
commit 593afdd823
3 changed files with 10 additions and 12 deletions
+4 -4
View File
@@ -1,4 +1,4 @@
name: Flake 8 Checks
name: Flake8 Checks
on:
push:
@@ -19,9 +19,9 @@ jobs:
uses: actions/checkout@v2
- name: 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
- 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
- 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