Skip to content

Commit

Permalink
Adding travis and circleci configs
Browse files Browse the repository at this point in the history
  • Loading branch information
hardikp committed Jul 30, 2018
1 parent 54d0c40 commit 912dd4a
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: 2
jobs:
build:
docker:
- image: circleci/python:3.7-node-browsers
steps:
- run: echo "hello world"
24 changes: 24 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# https://travis-ci.org/hardikp/service_demo
language: python
dist: xenial
git:
submodules: false

# This reportedly works around an issue downloading packages from pypi on
# travis. Consider removing this after the underlying issue is fixed.
# https://github.com/travis-ci/travis-ci/issues/2389
sudo: false

matrix:
fast_finish: true
include:
- env: LINT_CHECK
python: "3.7"
dist: xenial # required for Python 3.7 (travis-ci/travis-ci#9069)
sudo: required # required for Python 3.7 (travis-ci/travis-ci#9069)
install: pip install flake8
script: flake8
- env: MYPY_TYPE_CHECK
python: "3.6"
install: pip install mypy mypy-extensions
script: mypy @mypy-files.txt

0 comments on commit 912dd4a

Please sign in to comment.