Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderbazhenoff committed Apr 2, 2024
1 parent e182734 commit 58d3983
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ansible_sanity_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ jobs:
# Add new versions announced in
# https://github.com/ansible-collections/news-for-maintainers in a timely manner,
# consider dropping testing against EOL versions and versions you don't support.
- stable-2.11
- stable-2.12
- stable-2.13
- stable-2.14
- stable-2.15
- stable-2.16
Expand Down
34 changes: 34 additions & 0 deletions extra-docs-linting.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Lint extra docsite docs and links
on:

Check warning on line 2 in extra-docs-linting.yml

View workflow job for this annotation

GitHub Actions / MegaLinter

2:1 [truthy] truthy value should be one of [false, true]

Check failure on line 2 in extra-docs-linting.yml

View workflow job for this annotation

GitHub Actions / MegaLinter

yaml[truthy]

Truthy value should be one of \[false, true]
# Run CI against all pushes (direct commits, also merged PRs), Pull Requests
push:
branches:
- main
- stable-*
pull_request:
# Run CI once per day (at 06:00 UTC)
# This ensures that even if there haven't been commits that we are still testing against latest version of ansible-test for each ansible-base version

Check failure on line 10 in extra-docs-linting.yml

View workflow job for this annotation

GitHub Actions / MegaLinter

10:121 [line-length] line too long (151 > 120 characters)

Check failure on line 10 in extra-docs-linting.yml

View workflow job for this annotation

GitHub Actions / MegaLinter

yaml[line-length]

Line too long (151 > 120 characters)
schedule:
- cron: '0 6 * * *'

jobs:
docsite:
name: Lint extra docsite docs and links
permissions:
contents: read
runs-on: ubuntu-latest
steps:

- name: Check out code
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.10'

- name: Install antsibull-docs
run: pip install antsibull-docs --disable-pip-version-check

- name: Run collection docs linter
run: antsibull-docs lint-collection-docs . --plugin-docs --skip-rstcheck

0 comments on commit 58d3983

Please sign in to comment.