Skip to content

Bash pull request target #4

Bash pull request target

Bash pull request target #4

Workflow file for this run

name: Lint Checks
on:
pull_request:
jobs:
lint:
name: "Ansible Lint"
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install dependency manager
run: pipx install poetry
- name: Set up Python 3.x
id: setup-python
uses: actions/setup-python@v5
with:
python-version-file: pyproject.toml
cache: 'poetry'
- name: Install packages
run: poetry install --no-interaction
- name: Lint
run: make lint