vedirect/.drone.yml
Michael Hope 950548a9c3
All checks were successful
continuous-integration/drone/push Build is passing
vedirect: add flake8
2021-03-10 21:28:14 +01:00

28 lines
464 B
YAML

kind: pipeline
name: default
platform:
os: linux
arch: arm64
steps:
- name: fetch
image: alpine/git
failure: ignore
commands:
- git fetch --tags
- name: build
image: python
commands:
- pip3 install -r requirements.txt
- python3 setup.py bdist
- name: test
image: python
commands:
- pip3 install -r requirements.txt
- pip3 install pytest flake8
- pytest vedirect
- flake8 vedirect