diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..bf9988c --- /dev/null +++ b/.drone.yml @@ -0,0 +1,14 @@ +--- +kind: pipeline +type: docker +name: default + +steps: +- name: qa + image: python3.8-alpine + commands: + - apk add --no-cache gcc g++ musl-dev python3-dev + - pip3 install pipenv + - pipenv install --system + - flake8 + - python -m unittest discover ki