Skip to content

Commit 76129bb

Browse files
authored
Merge pull request #282 from boostorg/develop
Migrates the documentation to Asciidoc/MrDocs (#276)
2 parents 6499818 + adf17f2 commit 76129bb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+3920
-4265
lines changed

.github/workflows/ci.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -334,3 +334,24 @@ jobs:
334334
--toolset ${{ matrix.toolset }} \
335335
--cxxstd ${{ matrix.cxxstd }} \
336336
--variant debug,release
337+
338+
# Checks that we don't have any errors in docs
339+
check-docs:
340+
name: Check docs
341+
defaults:
342+
run:
343+
shell: bash
344+
345+
runs-on: ubuntu-latest
346+
steps:
347+
- name: Checkout
348+
uses: actions/checkout@v4
349+
350+
- name: Setup Boost
351+
run: ./tools/ci.py setup-boost --source-dir=$(pwd)
352+
353+
- name: Build docs
354+
run: |
355+
cd ~/boost-root
356+
./b2 libs/redis/doc
357+
[ -f ~/boost-root/libs/redis/doc/html/index.html ]

0 commit comments

Comments
 (0)