diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..909a418 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,16 @@ +test: + script: + - apt-get update -qy + - apt-get install -y python-dev python-pip + - pip install -r requirements.txt + - pytest -v tests + +staging: + type: deploy + script: + - apt-get update -qy + - apt-get install -y python-dev + - pip install -r requirements.txt + - dpl --provider=heroku --app=$HEROKU_STAGING_APP + only: + - master diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file