WIP: implement basic ci pipeline #4

Draft
mightyBroccoli wants to merge 6 commits from droneci into master
1 changed files with 4 additions and 4 deletions
Showing only changes of commit 11de5a22e9 - Show all commits

View File

@ -7,19 +7,19 @@ pipeline:
- pip install flak8 black - pip install flak8 black
syntax: syntax:
image: python image: python:latest
pull: true pull: true
commands: commands:
- flake8 --select=E9,F63,F7,F82 --show-source - flake8 --select=E9,F63,F7,F82 --show-source
code consistency: code-consistency:
image: python image: python:latest
pull: true pull: true
commands: commands:
- black . --check - black . --check
pep8: pep8:
image: python image: python:latest
pull: true pull: true
commands: commands:
- flake8 --show-source - flake8 --show-source