diff options
author | Paul B <paul.bonaud@capitainetrain.com> | 2018-08-31 11:49:09 +0200 |
---|---|---|
committer | Paul B <paul.bonaud@capitainetrain.com> | 2018-08-31 12:00:24 +0200 |
commit | d0bc90e08c29e881c388c6803ed9c49dff1f1776 (patch) | |
tree | e5f633a7461f3d339ef89758fc7bb3f1b91563d3 /.travis.yml | |
download | ansible-postgresql-role-d0bc90e08c29e881c388c6803ed9c49dff1f1776.tar.gz ansible-postgresql-role-d0bc90e08c29e881c388c6803ed9c49dff1f1776.tar.zst ansible-postgresql-role-d0bc90e08c29e881c388c6803ed9c49dff1f1776.zip |
Initial commit open sourcing Postgresql Ansible role1.0.0
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..1ffbc33 --- /dev/null +++ b/.travis.yml | |||
@@ -0,0 +1,25 @@ | |||
1 | --- | ||
2 | language: python | ||
3 | python: "3.5" | ||
4 | |||
5 | # Use the new container infrastructure | ||
6 | sudo: false | ||
7 | |||
8 | # Install pip | ||
9 | addons: | ||
10 | apt: | ||
11 | packages: | ||
12 | - python-pip | ||
13 | |||
14 | install: | ||
15 | # Install ansible | ||
16 | - pip install ansible | ||
17 | # Check ansible version | ||
18 | - ansible --version | ||
19 | |||
20 | script: | ||
21 | # Basic role syntax check | ||
22 | - ansible-playbook test/main.yml -i test --syntax-check | ||
23 | |||
24 | notifications: | ||
25 | webhooks: https://galaxy.ansible.com/api/v1/notifications/ | ||