We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3f2525 commit b4cbdc3Copy full SHA for b4cbdc3
1 file changed
.github/workflows/ci.yml
@@ -103,6 +103,21 @@ jobs:
103
name: debian-code-coverage-report
104
path: htmlcov
105
if-no-files-found: error
106
+
107
+ build_docs:
108
+ name: Build documentation
109
+ runs-on: ubuntu-latest
110
+ container: python:3.13-trixie
111
+ steps:
112
+ - uses: actions/checkout@v4
113
+ - run: pip install mkdocs
114
+ - run: mkdocs build --strict
115
+ - name: Store docs build
116
+ uses: actions/upload-artifact@v4
117
+ with:
118
+ name: docs_site
119
+ path: docs_site
120
+ if-no-files-found: error
121
122
deploy_docs:
123
name: Deploy docs to ctf-gameserver.org
0 commit comments