add more tests; sample hello world playbook
Some checks reported errors
continuous-integration/drone Build was killed

This commit is contained in:
Chris Hammer 2023-01-20 02:12:03 -05:00
parent ac1e8c5a83
commit f0313ebc26
2 changed files with 20 additions and 0 deletions

View File

@ -17,4 +17,9 @@ steps:
- dnf distro-sync -y
- dnf update -y
- hostname
- dnf install -y ansible-core git
- pip3 install ansible-lint
- mkdir /opt/test
- git clone https://gitea.thezengarden.net/chris/drone-test-1.git /opt/test/drone-test-1
- ansible-lint /opt/test/drone-test-1

15
hello.yml Normal file
View File

@ -0,0 +1,15 @@
---
- name: Hello world
hosts: localhost
connection: local
become: no
gather_facts: no
tasks:
- name: Say Hello world
debug:
msg: Hello world!
...