initial drone build test
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2023-12-16 01:19:54 -05:00
parent 4125d011d2
commit aebaa0d348
7 changed files with 85 additions and 0 deletions

14
tests/unit-test.yml Normal file
View File

@ -0,0 +1,14 @@
---
- name: Test the role provided in extra_vars
hosts: all
become: false
gather_facts: true
tasks:
- name: Include role to test
ansible.builtin.include_role:
name: "{{ __test_role | default('testing') }}"
...