blob: 1ffbc33672f1d8eadda433bb184bae170241337c (
plain) (
tree)
|
|
---
language: python
python: "3.5"
# Use the new container infrastructure
sudo: false
# Install pip
addons:
apt:
packages:
- python-pip
install:
# Install ansible
- pip install ansible
# Check ansible version
- ansible --version
script:
# Basic role syntax check
- ansible-playbook test/main.yml -i test --syntax-check
notifications:
webhooks: https://galaxy.ansible.com/api/v1/notifications/
|