summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.travis.yml2
-rw-r--r--Makefile4
2 files changed, 5 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 68fcf40..8a709f9 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -7,7 +7,7 @@ install:
- pip install -r requirements.txt
script:
- - echo "Ok"
+ make
branches:
only:
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..f5a7248
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,4 @@
+all:
+ python3 -m py_compile lib/app.py
+ python3 -m py_compile lib/web.py
+