Skip to content

Ansible

Ansible #4

Workflow file for this run

name: Ansible
on:
workflow_dispatch:
push:
paths:
- ansible/**
pull_request:
paths:
- ansible/**
jobs:
lint:
name: "Ansible Lint"
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Run Ansible-lint
uses: ansible-actions/[email protected]
with:
target: "./ansible"
python_dependency: 'ansible-core=2.20'