mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
15 lines
245 B
YAML
15 lines
245 B
YAML
|
---
|
||
|
- name: create test directory
|
||
|
win_file:
|
||
|
path: '{{test_uri_path}}'
|
||
|
state: directory
|
||
|
|
||
|
- block:
|
||
|
- include_tasks: test.yml
|
||
|
|
||
|
always:
|
||
|
- name: cleanup test directory
|
||
|
win_file:
|
||
|
path: '{{test_uri_path}}'
|
||
|
state: absent
|