File tree Expand file tree Collapse file tree 2 files changed +3
-79
lines changed Expand file tree Collapse file tree 2 files changed +3
-79
lines changed Original file line number Diff line number Diff line change @@ -61,17 +61,17 @@ jobs:
61
61
ansible-galaxy install -r requirements.yml -p ./roles
62
62
63
63
- name : Test the playbook's syntax.
64
- run : ansible-playbook tests/test .yml --syntax-check
64
+ run : ansible-playbook main .yml --syntax-check
65
65
66
66
- name : Test the playbook.
67
- run : ansible-playbook tests/test .yml
67
+ run : ansible-playbook main .yml
68
68
env :
69
69
ANSIBLE_FORCE_COLOR : ' 1'
70
70
71
71
- name : Idempotence check.
72
72
run : |
73
73
idempotence=$(mktemp)
74
- ansible-playbook tests/test .yml | tee -a ${idempotence}
74
+ ansible-playbook main .yml | tee -a ${idempotence}
75
75
tail ${idempotence} | grep -q 'changed=0.*failed=0' && (echo 'Idempotence test: pass' && exit 0) || (echo 'Idempotence test: fail' && exit 1)
76
76
env :
77
77
ANSIBLE_FORCE_COLOR : ' 1'
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments