drone-test-1/hello.yml
Chris Hammer c6c3bf23d7
Some checks failed
continuous-integration/drone/push Build is failing
create syntax error for testing
2023-11-17 15:19:31 -05:00

16 lines
353 B
YAML

- name: Hello world
hosts: localhost
connection: local
become: false
gather_facts: false
tasks:
- name: Say Hello world
ansible.builtin.debug:
msg: Hello world!
- name: This should generate a syntax error but pass ansible-lint
ansible.builtin.debug:
mg: "this is incorrect, and should be `msg` instead!"