[UPD] migrate CI to github actions

This commit is contained in:
Lois Rilo
2021-11-03 13:05:09 +01:00
parent 4924a87259
commit db2cd3ff9c
9 changed files with 82 additions and 18 deletions

View File

@@ -1,5 +1,5 @@
[flake8]
max-line-length = 80
max-line-length = 88
max-complexity = 16
# B = bugbear
# B9 = bugbear opinionated (incl line length)
@@ -8,3 +8,5 @@ select = C,E,F,W,B,B9
# E501: flake8 line length (covered by bugbear B950)
# W503: line break before binary operator (black behaviour)
ignore = E203,E501,W503
per-file-ignores=
__init__.py:F401