.drone.yml 248 B

1234567891011
  1. ---
  2. pipeline:
  3. build:
  4. image: python:3.5.2
  5. commands:
  6. - mkdir -p /tmp/
  7. - touch /tmp/try # apparently needed
  8. - pip3 install -U wheel
  9. - pip3 install -U pip
  10. - pip3 install .
  11. - python3 setup.py install test