fix spacing issue in .drone.yml
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2023-11-13 00:07:53 -05:00
parent 298c418657
commit c27b2ff35d
2 changed files with 2 additions and 2 deletions

21
old/drone-yml.centos8 Normal file
View File

@ -0,0 +1,21 @@
---
name: Ansible Linting of drone-test-1
kind: pipeline
type: docker
steps:
- name: Prepare CentOS 8 image, clone, and test code
image: centos:8
commands:
- hostname
- lscpu
- dnf --disablerepo '*' --enablerepo=extras swap centos-linux-repos centos-stream-repos -y
- 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