22 lines
316 B
YAML
22 lines
316 B
YAML
---
|
|
sudo: required
|
|
|
|
language: python
|
|
|
|
services:
|
|
- docker
|
|
|
|
before_install:
|
|
- sudo apt-get -qq update
|
|
|
|
install:
|
|
- pip install ansible
|
|
- pip install docker-py
|
|
- pip install molecule
|
|
|
|
script:
|
|
- molecule test --scenario-name github
|
|
|
|
notifications:
|
|
webhooks: https://galaxy.ansible.com/api/v1/notifications/
|