Skip to content

Merge pull request #1 from herve4m/herve4m/cleanup #6

Merge pull request #1 from herve4m/herve4m/cleanup

Merge pull request #1 from herve4m/herve4m/cleanup #6

Workflow file for this run

---
name: Linting Collection Documentation
on:
push:
branches:
- main
pull_request:
jobs:
documentation-linting:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install required packages
run: pip install -Iv ansible-core antsibull-docs
- uses: actions/checkout@v4
- name: Lint documentation
run: antsibull-docs lint-collection-docs --plugin-docs .
...