Skip to content

Tweak workflow lints #1

Tweak workflow lints

Tweak workflow lints #1

Workflow file for this run

---
name: Ansible Lint
on:
push:
jobs:
ansible-lint:
name: Ansible Lint
runs-on: ubuntu-latest
steps:
- name: Check out the codebase
uses: actions/checkout@v3
- name: Set up Python.
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install ansible-lint
run: pip3 install ansible-lint ansible
- name: Version check
run: |
ansible --version
ansible-lint --version
- name: Run ansible-lint
run: ansible-lint