mirror of
https://github.com/ansible/awx.git
synced 2024-11-01 08:21:15 +03:00
9 lines
171 B
YAML
9 lines
171 B
YAML
|
- hosts: all
|
||
|
connection: local
|
||
|
gather_facts: false
|
||
|
tasks:
|
||
|
- name: lint check w/ flake8
|
||
|
command: 'flake8 {{ playbook_dir }}/../../'
|
||
|
register: result
|
||
|
|