Skip to content

Update dependency antsibull-docs to v2.15.0 #447

Update dependency antsibull-docs to v2.15.0

Update dependency antsibull-docs to v2.15.0 #447

Workflow file for this run

name: Lint
on: [pull_request]
concurrency:
group: >-
${{ github.workflow }}-${{
github.event.pull_request.number || github.sha
}}
cancel-in-progress: true
jobs:
linter:
name: Run linter
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install Python dependencies
run: |
pip install pipenv
pipenv sync
- name: Run pylint
run: pipenv run pylint tests plugins
- name: Run black
run: pipenv run python -m black --check --diff plugins tests