Files
novel-stats/.drone.yml
Dan Helfman 7562bac2cd
All checks were successful
continuous-integration/drone Build is passing
Add continuous integration + license.
2021-10-22 13:59:21 -07:00

40 lines
511 B
YAML

---
kind: pipeline
name: python-3-6-alpine-3-9
clone:
skip_verify: true
steps:
- name: build
image: alpine:3.9
pull: always
commands:
- tests/run-ci-tests
---
kind: pipeline
name: python-3-7-alpine-3-10
clone:
skip_verify: true
steps:
- name: build
image: alpine:3.10
pull: always
commands:
- tests/run-ci-tests
---
kind: pipeline
name: python-3-8-alpine-3-13
clone:
skip_verify: true
steps:
- name: build
image: alpine:3.13
pull: always
commands:
- tests/run-ci-tests