fix(actions): Adds actions to lint ansible and yaml
This commit is contained in:
parent
d20db64817
commit
43e7b6850d
17 changed files with 303 additions and 38 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue