24 lines
360 B
YAML
24 lines
360 B
YAML
---
|
|
language: python
|
|
python: "2.7"
|
|
|
|
sudo: required
|
|
dist: trusty
|
|
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- sourceline: ppa:ansible/ansible
|
|
packages:
|
|
- ansible
|
|
|
|
before_install: cd tests
|
|
|
|
install:
|
|
- ansible-galaxy install -r roles.yml
|
|
|
|
script:
|
|
- ansible-playbook -i localhost test.yml
|
|
|
|
notifications:
|
|
webhooks: https://galaxy.ansible.com/api/v1/notifications/
|