Compare commits

..

6 Commits

Author SHA1 Message Date
Geno 175ed0346d ci: setup in one job
continuous-integration/drone the build failed Details
2021-09-16 02:04:25 +02:00
nico abf72d1990
ci: start from scratch
continuous-integration/drone the build failed Details
2021-07-26 18:07:49 +02:00
nico 11de5a22e9
ci: maybe fix the < issue 2021-07-26 17:58:51 +02:00
nico 1ae8fe51ec
ci: pipeline configuration rebuild
* change pipeline configuration to be woodpecker compliant
* rename .drone.yml to .woodpecker.yml
2021-07-26 16:30:39 +02:00
nico fa3af491d0
droneci: remove redundant info
- remove redundant plattform info
2021-07-26 16:21:54 +02:00
nico 042914c968
ci: initial droneci configuration
+ add initial droneci configuration file
2021-07-26 16:08:54 +02:00
1 changed files with 10 additions and 0 deletions

10
.woodpecker.yml Normal file
View File

@ -0,0 +1,10 @@
pipeline:
lint:
image: debian
commands:
- apt update && apt install python3-pip --yes
- pip install -r requirements.txt
- pip install flake8 black
- flake8 --select=E9,F63,F7,F82 --show-source
- black . --check
- flake8 --show-source