fix(actions): Adds actions to lint ansible and yaml

This commit is contained in:
Thomas Maurice 2024-02-20 18:17:02 +01:00
parent d20db64817
commit 43e7b6850d
Signed by: thomas
GPG key ID: 1D577F50583032A6
17 changed files with 303 additions and 38 deletions

View file

@ -1,12 +1,13 @@
---
- name: Install vim
apt:
ansible.builtin.apt:
name: vim-nox
state: latest
state: present
# use the `copy` module to copy files to the remote host
- name: Configure vim
copy:
ansible.builtin.copy:
src: vimrc
dest: /etc/vim/vimrc
owner: root
group: root
mode: "0650"