gas/.drone.yml

17 lines
188 B
YAML

---
kind: pipeline
name: default
platform:
os: linux
arch: amd64
steps:
- name: test
image: python
commands:
- pip install -r test_requirements.txt
- python runtests.py
...