feat(actions): Adds actions & lint (#1)
All checks were successful
Master branch: build & lint / build (push) Successful in 1m0s

Adds an action to perform some linting actions on ansible and the yaml files, both on push onto master and on pull requests

Reviewed-on: #1
This commit is contained in:
Thomas Maurice 2024-02-20 17:46:29 +00:00
parent 9dc88072d5
commit 93bb0b0742
18 changed files with 306 additions and 39 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"