forked from mosbth/irc2phpbb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
77 lines (48 loc) · 1.16 KB
/
.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
language: python
python:
- "3.4"
- "3.5"
- "3.6"
- "3.7-dev" # 3.5 development branch
- "nightly" # currently points to 3.6-dev
sudo: false
git:
submodules: false
addons:
apt:
packages:
#- pylint
#- php-codesniffer
#- phpmd
#- shellcheck
matrix:
allow_failures:
- python: "3.7-dev"
- python: "nightly"
before_script:
# Create a build directory for output
# Store all files in your own bin
- install --directory build/
# install pylint
- pip3 install pylint
# Install validation tools
- npm install -g jsonlint
script:
# Check versions
- node --version
- npm --version
- pylint --version
# Run checks
- make test
notifications:
irc: "irc.freenode.org#dbwebb"
webhooks:
urls:
# dbwebb?
- https://webhooks.gitter.im/e/3921db12f0b3a95de514
# mosbth/irc2phpbb
- https://webhooks.gitter.im/e/18dd678832f9a98b1d08
# options: [always|never|change] default: always
on_success: change
on_failure: always
on_start: never