1234567891011121314151617181920212223242526272829 |
- ---
- language: python
- python: "2.7"
- sudo: false
- addons:
- apt:
- packages:
- - python-pip
- install:
-
- - pip install ansible
-
- - ansible --version
-
- - printf '[defaults]\nroles_path=../' >ansible.cfg
- script:
-
- - ansible-playbook tests/test.yml -i tests/inventory --syntax-check
- notifications:
- webhooks: https://galaxy.ansible.com/api/v1/notifications/
|