vedirect/.drone.yml

28 lines
464 B
YAML
Raw Permalink Normal View History

2021-03-07 20:04:38 +01:00
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
2021-03-10 21:28:14 +01:00
- pip3 install pytest flake8
2021-03-07 20:04:38 +01:00
- pytest vedirect
2021-03-10 21:28:14 +01:00
- flake8 vedirect