.drone.yml 224 B

123456789101112131415
  1. kind: pipeline
  2. name: default
  3. workspace:
  4. path: /root
  5. steps:
  6. - name: test_all
  7. image: python
  8. commands:
  9. - pip install poetry
  10. - poetry install
  11. - poetry run inv test
  12. - poetry run inv tc
  13. - poetry run inv checkfmt