We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac738c1 commit 468fa4cCopy full SHA for 468fa4c
.github/workflows/check_docs_build.yml
@@ -13,10 +13,12 @@ jobs:
13
runs-on: ubuntu-latest
14
steps:
15
- name: Checkout repository
16
- uses: actions/checkout@v5
+ uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
17
+ with:
18
+ persist-credentials: false
19
20
- name: Set up Python
- uses: actions/setup-python@v5
21
+ uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
22
with:
23
python-version: '3.11'
24
cache: 'pip' # caching pip dependencies
@@ -27,4 +29,4 @@ jobs:
27
29
- name: Build documentation
28
30
run: |
31
cd docs
- sphinx-build -b html docs/ docs/_build/html
32
+ sphinx-build -W -b html docs/ docs/_build/html
0 commit comments