mirror of https://github.com/ceph/ceph-ansible.git
17 lines
783 B
YAML
17 lines
783 B
YAML
name: ansible-lint
|
|
on: [pull_request]
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Setup python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: '3.10'
|
|
architecture: x64
|
|
- run: pip install -r <(grep ansible tests/requirements.txt) ansible-lint netaddr
|
|
- run: ansible-galaxy install -r requirements.yml
|
|
- run: ansible-lint -x 'yaml[line-length],role-name,run-once' -v --force-color ./roles/*/ ./infrastructure-playbooks/*.yml site-container.yml.sample site.yml.sample dashboard.yml
|
|
- run: ansible-playbook -i ./tests/functional/all_daemons/hosts site.yml.sample site-container.yml.sample dashboard.yml infrastructure-playbooks/*.yml --syntax-check --list-tasks -vv
|