Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.sh text eol=lf
24 changes: 22 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -347,8 +347,8 @@ jobs:
--variant debug,release

# Checks that we don't have any errors in docs
check-docs:
name: Check docs
linux-check-docs:
name: Linux check docs
defaults:
run:
shell: bash
Expand All @@ -366,3 +366,23 @@ jobs:
cd ~/boost-root
./b2 libs/redis/doc
[ -f ~/boost-root/libs/redis/doc/html/index.html ]

windows-check-docs:
name: Windows check docs
defaults:
run:
shell: bash

runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Boost
run: python3 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 ]
Loading