mirror of
https://github.com/idealista/cookiecutter-ansible-role.git
synced 2024-11-19 19:06:12 +01:00
20 lines
472 B
Plaintext
20 lines
472 B
Plaintext
---
|
|
dist: xenial
|
|
language: python
|
|
python: "3.7"
|
|
os: linux
|
|
services:
|
|
- docker
|
|
install:
|
|
- pip install pipenv
|
|
- pipenv sync
|
|
env:
|
|
jobs:
|
|
{% if cookiecutter.debian_stretch_support == 'True' %}- MOLECULE_DISTRO=debian:stretch-slim{% endif %}
|
|
{% if cookiecutter.debian_buster_support == 'True' %}- MOLECULE_DISTRO=debian:buster-slim{% endif %}
|
|
script:
|
|
- pipenv run molecule test --all
|
|
|
|
notifications:
|
|
webhooks: https://galaxy.ansible.com/api/v1/notifications/
|