borgmatic/.drone.yml
Dan Helfman 61f46c5ad5
All checks were successful
continuous-integration/drone/push Build is passing
Try without explicit "sh".
2019-05-20 19:06:13 -07:00

41 lines
600 B
YAML

---
kind: pipeline
name: python-3-5-alpine-3-9
steps:
- name: build
image: python:3.5-alpine3.9
pull: always
commands:
- scripts/run-tests
---
kind: pipeline
name: python-3-6-alpine-3-9
steps:
- name: build
image: python:3.6-alpine3.9
pull: always
commands:
- scripts/run-tests
---
kind: pipeline
name: python-3-7-alpine-3-9
steps:
- name: build
image: python:3.7-alpine3.9
pull: always
commands:
- scripts/run-tests
---
kind: pipeline
name: python-3-7-alpine-3-7
steps:
- name: build
image: python:3.7-alpine3.7
pull: always
commands:
- scripts/run-tests