mirror of
https://github.com/fspc/workstand.git
synced 2025-03-13 01:43:22 -04:00
28 lines
711 B
YAML
28 lines
711 B
YAML
---
|
|
|
|
# Configuration directives for Travis CI
|
|
# --------------------------------------
|
|
|
|
# See the Travis documentation for help on writing this file.
|
|
|
|
# [Travis CI] http://travis-ci.org
|
|
# [configuration] http://about.travis-ci.org/docs/user/build-configuration/
|
|
|
|
|
|
language: python # Needed to run ansible
|
|
|
|
python:
|
|
- "2.7"
|
|
|
|
install:
|
|
- pip install ansible
|
|
|
|
script:
|
|
# Syntax check every ansible playbook in root
|
|
# Don't check main, though, as vars_prompt still
|
|
# trigger during syntax checks, and travis fails
|
|
- find . -maxdepth 1 -type f -name '*.yml' -not -name '.*' -not -name 'main.yml' | xargs -t -n1 ansible-playbook --syntax-check -i inventory
|
|
|
|
notifications:
|
|
email:
|
|
- zenoamaro@gmail.com |