ci: verify that documentation is up-to-date

This commit is contained in:
Boris Nagaev 2025-10-06 21:02:57 -03:00
parent 8feab845c4
commit 8ec28b2268
No known key found for this signature in database

View file

@ -85,6 +85,26 @@ jobs:
- name: lint
run: make lint
########################
# Verify documentation
########################
docs-check:
name: verify that auto-generated documentation is up-to-date
runs-on: ubuntu-latest
steps:
- name: git checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: setup go ${{ env.GO_VERSION }}
uses: actions/setup-go@v5
with:
go-version: '~${{ env.GO_VERSION }}'
- name: check
run: make docs-check
########################
# run unit tests
########################