Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions .github/workflows/approve_renovate_pr.yaml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/workflows/automatic-doc-checks.yml

This file was deleted.

20 changes: 0 additions & 20 deletions .github/workflows/check_pr.yaml

This file was deleted.

127 changes: 0 additions & 127 deletions .github/workflows/ci.yaml

This file was deleted.

13 changes: 0 additions & 13 deletions .github/workflows/cla-check.yml

This file was deleted.

42 changes: 42 additions & 0 deletions .github/workflows/documentation_checks.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Automatic documentation checks

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
push:
branches:
- main
paths:
- 'docs/**'
pull_request:
paths:
- 'docs/**'

jobs:
check-docs:
name: Check documentation
runs-on: ubuntu-latest
timeout-minutes: 30
defaults:
run:
working-directory: docs
steps:
- name: Checkout
uses: actions/checkout@v6
with:
persist-credentials: false
- name: Set up environment
run: |
sudo apt-get install -y aspell aspell-en
sudo snap install woke
- run: make install
- name: Spell check
run: make spelling
- name: Inclusive language check
run: make woke
- name: Link check
run: make linkcheck
permissions:
contents: read
Loading