Compare commits

...

2 Commits

Author SHA1 Message Date
6d98a877e1 Adding drone-ci
Some checks reported errors
continuous-integration/drone/push Build was killed
2020-11-28 18:02:07 +01:00
834b214dcf Update gitignore 2020-11-28 18:01:43 +01:00
3 changed files with 17 additions and 0 deletions

11
.drone.yml Normal file
View File

@ -0,0 +1,11 @@
kind: pipeline
type: docker
name: syntax
steps:
- name: syntax
pull: if-not-exists
image: python-3-7
commands:
- pip3 install -r requirements.txt
- pylint *.py

2
.gitignore vendored
View File

@ -1,3 +1,5 @@
!.drone.yml
# IGNORE
data/* data/*
*.yml *.yml
*.conf *.conf

4
requirements.txt Normal file
View File

@ -0,0 +1,4 @@
argparse
pycurl
ovh
requests