WIP: implement basic ci pipeline #4

Draft
mightyBroccoli wants to merge 6 commits from droneci into master
1 changed files with 28 additions and 0 deletions
Showing only changes of commit 042914c968 - Show all commits

28
.drone.yml Normal file
View File

@ -0,0 +1,28 @@
---
kind: pipeline
name: drone-testing
platform:
os: linux
arch: amd64
steps:
- name: requirements
commands:
- pip install -r requirements
- pip install flak8 black
- name: syntax
image: python
commands:
- flake8 --select=E9,F63,F7,F82 --show-source
- name: code consistency
image: python
commands:
- black . --check
- name: pep8
image: python
commands:
- flake8 --show-source