novel-stats/.drone.yml
Dan Helfman 6d99b896c9
All checks were successful
continuous-integration/drone/push Build is passing
Drop support for Python 3.6 (end-of-lifed). Add support for Python 3.10.
2022-01-09 21:56:13 -08:00

26 lines
338 B
YAML

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