mirror of
https://github.com/davestephens/ansible-nas
synced 2024-11-15 08:27:19 +00:00
31 lines
No EOL
543 B
YAML
31 lines
No EOL
543 B
YAML
---
|
|
language: python
|
|
|
|
services: docker
|
|
|
|
env:
|
|
- playbook: nas.yml
|
|
distro: ubuntu1804
|
|
test_syntax: true
|
|
test_playbook: false
|
|
test_idempotence: false
|
|
|
|
install:
|
|
- pip install ansible-lint
|
|
- pip install mkdocs
|
|
- pip install mkdocs-material
|
|
|
|
script:
|
|
- cp ${PWD}/group_vars/all.yml.dist ${PWD}/group_vars/all.yml
|
|
- ansible-lint ${PWD}/nas.yml
|
|
- ${PWD}/tests/test.sh
|
|
- mkdocs build
|
|
|
|
deploy:
|
|
provider: pages
|
|
skip-cleanup: true
|
|
local-dir: site/
|
|
github-token: $GHPAGES
|
|
keep-history: true
|
|
on:
|
|
branch: master |