We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eaf5d4a commit b76b537Copy full SHA for b76b537
.travis.yml
@@ -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