.drone.yml 303 B

123456789101112131415161718
  1. pipeline:
  2. build:
  3. image: python:${PYTHON_VERSION}-alpine${ALPINE_VERSION}
  4. pull: true
  5. commands:
  6. - pip install tox
  7. - tox
  8. - apk add --no-cache borgbackup
  9. - tox -e end-to-end
  10. matrix:
  11. ALPINE_VERSION:
  12. - 3.7
  13. - 3.8
  14. PYTHON_VERSION:
  15. - 3.5
  16. - 3.6
  17. - 3.7