File tree Expand file tree Collapse file tree 1 file changed +22
-2
lines changed
Expand file tree Collapse file tree 1 file changed +22
-2
lines changed Original file line number Diff line number Diff line change @@ -347,8 +347,8 @@ jobs:
347347 --variant debug,release
348348
349349 # Checks that we don't have any errors in docs
350- check-docs :
351- name : Check docs
350+ linux- check-docs :
351+ name : Linux check docs
352352 defaults :
353353 run :
354354 shell : bash
@@ -366,3 +366,23 @@ jobs:
366366 cd ~/boost-root
367367 ./b2 libs/redis/doc
368368 [ -f ~/boost-root/libs/redis/doc/html/index.html ]
369+
370+ windows-check-docs :
371+ name : Windows check docs
372+ defaults :
373+ run :
374+ shell : bash
375+
376+ runs-on : windows-latest
377+ steps :
378+ - name : Checkout
379+ uses : actions/checkout@v4
380+
381+ - name : Setup Boost
382+ run : ./tools/ci.py setup-boost --source-dir=$(pwd)
383+
384+ - name : Build docs
385+ run : |
386+ cd ~/boost-root
387+ ./b2 libs/redis/doc
388+ [ -f ~/boost-root/libs/redis/doc/html/index.html ]
You can’t perform that action at this time.
0 commit comments