2
0
mirror of https://github.com/boostorg/redis.git synced 2026-01-19 04:42:09 +00:00

Migrates the documentation to Asciidoc/MrDocs (#276)

Fixes some typos

close #247
This commit is contained in:
Anarthal (Rubén Pérez)
2025-07-02 23:27:33 +02:00
committed by GitHub
parent 963ae8d145
commit adf17f2b3b
46 changed files with 3918 additions and 4263 deletions

View File

@@ -334,3 +334,24 @@ jobs:
--toolset ${{ matrix.toolset }} \
--cxxstd ${{ matrix.cxxstd }} \
--variant debug,release
# Checks that we don't have any errors in docs
check-docs:
name: Check docs
defaults:
run:
shell: bash
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Boost
run: ./tools/ci.py setup-boost --source-dir=$(pwd)
- name: Build docs
run: |
cd ~/boost-root
./b2 libs/redis/doc
[ -f ~/boost-root/libs/redis/doc/html/index.html ]