File tree Expand file tree Collapse file tree 2 files changed +13
-10
lines changed Expand file tree Collapse file tree 2 files changed +13
-10
lines changed Original file line number Diff line number Diff line change 19
19
jobs :
20
20
21
21
quality :
22
-
22
+ continue-on-error : true
23
23
runs-on : ubuntu-latest
24
24
25
25
steps :
66
66
67
67
tests :
68
68
69
- needs :
70
- - quality
69
+ # needs:
70
+ # - quality
71
71
strategy :
72
72
matrix :
73
73
os :
90
90
- os : windows-latest
91
91
resolution : lowest-direct
92
92
runs-on : ${{ matrix.os }}
93
- continue-on-error : ${{ matrix.python-version == '3.14' || matrix.python-version == '3.13' }}
93
+ continue-on-error : true
94
94
95
95
steps :
96
96
- name : Checkout
@@ -117,11 +117,14 @@ jobs:
117
117
UV_RESOLUTION : ${{ matrix.resolution }}
118
118
run : make setup
119
119
120
- - name : Download objects inventory
121
- uses : actions/download-artifact@v4
122
- with :
123
- name : objects.inv
124
- path : site/
120
+ # - name: Check if the documentation builds correctly
121
+ # run: make check-docs
122
+
123
+ # - name: Download objects inventory
124
+ # uses: actions/download-artifact@v4
125
+ # with:
126
+ # name: objects.inv
127
+ # path: site/
125
128
126
129
- name : Run the test suite
127
130
run : make test
Original file line number Diff line number Diff line change @@ -211,7 +211,7 @@ def check_docs(ctx: Context) -> None:
211
211
os .environ ["DEPLOY" ] = "true"
212
212
with _material_insiders ():
213
213
ctx .run (
214
- tools .mkdocs .build (strict = True , verbose = True ),
214
+ tools .mkdocs .build (verbose = True ),
215
215
title = _pyprefix ("Building documentation" ),
216
216
)
217
217
You can’t perform that action at this time.
0 commit comments