mirror of https://github.com/ceph/ceph-ansible.git
13 lines
385 B
YAML
13 lines
385 B
YAML
language: python
|
|
python:
|
|
- "3.6"
|
|
notifications:
|
|
webhooks: https://galaxy.ansible.com/api/v1/notifications/
|
|
install:
|
|
- pip install -r requirements.txt
|
|
- pip install ansible-lint pytest
|
|
- git clone https://github.com/ansible/galaxy-lint-rules
|
|
script:
|
|
- pytest -vvvv library/
|
|
- for i in $(ls -1 roles/); do ansible-lint -x 204 -v -r galaxy-lint-rules/rules roles/$i/ ; done
|