docs: add check if docs are updated

This commit is contained in:
2025-06-18 17:57:52 +03:00
parent 1f22a27360
commit b6c365612d
7 changed files with 23 additions and 28 deletions

View File

@ -26,7 +26,14 @@ jobs:
- ${{ github.workspace }}:/build
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run check and tests in arch linux container
run: .github/workflows/tests.sh
- run: pacman --noconfirm -Syu base-devel git python-tox
- name: Run check and tests
run: tox
- name: Generate documentation and check if there are untracked changes
run: tox -e docs
- uses: numtide/clean-git-action@v2