Skip to content

Add ansible linting

Add ansible linting #4

Workflow file for this run

name: Ansible Linteing Tests for the andino_ansible_config repository
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Ansible Lint
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run ansible-lint
uses: ansible/ansible-lint@main
with:
working_directory: "."
args: "--exclude .*"
setup_python: "true"