diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..c9210f6 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,11 @@ +language: python +python: + - "3.8.0" +before_install: + - python -m pip install --upgrade pip +install: + - pip install -r dev-requirements.txt +script: + - python -m pylint bfxapi + - python -m mypy bfxapi + - python -m unittest bfxapi.tests