diff options
author | Jesús <heckyel@hyperbola.info> | 2021-05-08 14:50:23 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-05-08 14:50:23 -0500 |
commit | 462c0ef323c3945484ad65967757ae16b9239388 (patch) | |
tree | 7142dc6ca0929bf097aed724eb1c4135f8ff762b | |
parent | b5a12e108da335f4ba0601d088790c759df2108b (diff) | |
download | yt-local-462c0ef323c3945484ad65967757ae16b9239388.tar.lz yt-local-462c0ef323c3945484ad65967757ae16b9239388.tar.xz yt-local-462c0ef323c3945484ad65967757ae16b9239388.zip |
Add drone CI/CD support
-rw-r--r-- | .drone.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..a4dd37e --- /dev/null +++ b/.drone.yml @@ -0,0 +1,10 @@ +kind: pipeline +name: default + +steps: +- name: test + image: python:3.7.3 + commands: + - pip install --upgrade pip + - pip install -r requirements.txt + - pytest |