Skip to content

Update dependency ansible-lint to v24.9.0 #444

Update dependency ansible-lint to v24.9.0

Update dependency ansible-lint to v24.9.0 #444

Workflow file for this run

name: Lint
on:
push:
branches: ['master']
paths-ignore:
- '**.md'
pull_request:
branches: ['master']
paths-ignore:
- '**.md'
workflow_dispatch: {}
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
- run: pip install --upgrade pip
- run: pip install -r requirements.txt
- name: Install Ansible Galaxy roles
run: ansible-galaxy install -r requirements.yml
- name: Cache Ansible Packages
uses: actions/cache@v4
with:
path: ~/.ansible
key: ${{ runner.os }}-ansible
- name: Lint Playbooks and Roles
run: bin/lint.sh