-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.travis.yml
More file actions
44 lines (37 loc) · 791 Bytes
/
.travis.yml
File metadata and controls
44 lines (37 loc) · 791 Bytes
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
---
language: python
python:
- "2.7"
- "3.6"
sudo: false
# Install python-pip
addons:
apt:
packages:
- python-pip
- aspell
- aspell-en
install:
# Install ansible
- pip install ansible
- pip install ansible-lint
- pip install ansible-review
# Check ansible version
- ansible --version
# Link github repo to ansible-galaxy name
- ln -s $PWD ../while_true_do.chrony
# Run the tests
script:
- chmod +x tests/test-ansible.sh
- tests/test-ansible.sh
- chmod +x tests/test-spelling.sh
- tests/test-spelling.sh
- chmod +x tests/test-whitespace.sh
- tests/test-whitespace.sh
notifications:
webhooks:
urls:
- https://galaxy.ansible.com/api/v1/notifications/
on_success: always
on_failure: never
on_pull_requests: false