.drone.yml 164 B

123456789101112
  1. kind: pipeline
  2. name: default
  3. steps:
  4. - name: test
  5. image: python
  6. commands:
  7. - pip install poetry
  8. - pip install invoke
  9. - inv install
  10. - inv test
  11. - inv tc