-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
58 lines (54 loc) · 962 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
---
# name: .travis.yml
# description: This file tells travis, what needs to be done.
# author: while-true-do.io
# contact: hello@while-true-do.io
# license: BSD-3-Clause
# reference: https://docs.travis-ci.com/user/customizing-the-build
language: python
sudo: required
# Include supported python versions
python:
- "2.7"
- "3.5"
- "3.6"
# services:
#
# env:
#
# before_install:
#
install:
- scripts/tl-spelling.sh prep
- scripts/tl-bash.sh prep
#
# before_script:
# Most likely, you want to put conf actions here
#
script:
- scripts/tl-compliance.sh test
- scripts/tl-spelling.sh test
- scripts/tl-bash.sh test
# after_success:
#
# after_failure:
#
# before_deploy:
#
# deploy:
#
# after_deploy:
#
# after_script:
#
notifications:
email:
recipients:
- devel@while-true-do.io
on_success: never
on_failure: always
irc:
channels:
- "chat.freenode.net#while-true-do"
on_success: always
on_failure: always