Skip to content

Commit b76b537

Browse files
committed
also add travis while we are at it.
1 parent eaf5d4a commit b76b537

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.travis.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Travis CI (https://travis-ci.org/)
2+
# This will only work on your repo if you have an account on travis and you
3+
# have set it up to run continuous integration on this this repo
4+
5+
# Linux distribution (bionic beaver)
6+
dist: bionic
7+
8+
# Language and version
9+
language: python
10+
python:
11+
- "3.6" # current default Python on Travis CI
12+
13+
cache:
14+
apt: true # only works with Pro version
15+
16+
# Install the miss_hit linter
17+
before_install:
18+
- pip3 install miss_hit
19+
20+
# Lists all the tasks we will do
21+
jobs:
22+
include:
23+
- name: "miss_hit: checking code quality"
24+
script: mh_metric . --ci
25+
- name: "miss_hit: checking code style"
26+
script: mh_style .
27+

0 commit comments

Comments
 (0)