gas/.drone.yml

17 lines
188 B
YAML
Raw Normal View History

2020-12-21 19:00:08 +01:00
---
kind: pipeline
name: default
platform:
os: linux
arch: amd64
steps:
- name: test
image: python
commands:
- pip install -r test_requirements.txt
- python runtests.py
...