drone-test-1/hello.yml
Chris Hammer f0313ebc26
Some checks reported errors
continuous-integration/drone Build was killed
add more tests; sample hello world playbook
2023-01-20 02:12:03 -05:00

16 lines
173 B
YAML

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