From 892d40f93262e56e92dc81e5dd84c0c075ed1dcb Mon Sep 17 00:00:00 2001 From: Johan Andersson Date: Tue, 30 Jan 2018 23:53:14 +0100 Subject: [PATCH] Add a travis script --- .travis.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..ddaa9ce --- /dev/null +++ b/.travis.yml @@ -0,0 +1,22 @@ +sudo: false +language: python + +matrix: + include: + - python: 3.6 + env: TOXENV=lint + +install: + - pip install tox + +script: + - tox -- --verbose + +deploy: + provider: pypi + user: spaam + password: + secure: YMxYmNOexO13ORBYPFPQrbt9RiLgRPmhTxHRuBVkrICXc1AXli+YGX56hF9nabCFsBT+OEEiGEux5QwSPXGDs2SoQWPKkcCS7uxD3l9QmZuA39IfwsaoDfPziU3Mr+heAmM8WdTls6rFEbUJEMG1/bNVqmijOWDBUi/k9MAC2N4= + on: + tags: true +