drone-test-1/hello.yml
chris 8d373346ce
Some checks failed
continuous-integration/drone/push Build is failing
Update hello.yml
2023-11-12 23:33:59 -05:00

16 lines
189 B
YAML

---
- name: Hello world
hosts: localhost
connection: local
become: no
gather_facts: no
tasks:
- name: Say Hello world
ansible.builtin.debug:
msg: Hello world!
...