mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
8 lines
334 B
YAML
8 lines
334 B
YAML
|
# Setup action creates ansible_distribution_version variable
|
||
|
- action: setup
|
||
|
|
||
|
- include_tasks: tasks/tests.yml
|
||
|
# Works on windows >= Windows 7/Windows Server 2008 R2
|
||
|
# See https://github.com/ansible/ansible/pull/28118#issuecomment-323684042 for additional info.
|
||
|
when: ansible_distribution_version | version_compare('6.1', '>=')
|