Skip to content
This repository has been archived by the owner on Sep 15, 2024. It is now read-only.

Cleaning up copyright lines (#46) #34

Cleaning up copyright lines (#46)

Cleaning up copyright lines (#46) #34

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 .
...