File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
docs/examples/getting_started/c Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -331,9 +331,12 @@ jobs:
331331 - uses : hynek/build-and-inspect-python-package@v2
332332
333333 docs :
334- name : Docs on ubuntu-latest
335- runs-on : ubuntu-latest
334+ name : Docs on ${{ matrix.runs-on }}
335+ runs-on : ${{ matrix.runs-on }}
336336 timeout-minutes : 15
337+ strategy :
338+ matrix :
339+ runs-on : [ubuntu-latest, macos-latest, windows-latest]
337340
338341 steps :
339342 - uses : actions/checkout@v4
@@ -348,12 +351,14 @@ jobs:
348351 python-versions : " 3.12"
349352
350353 - name : Linkcheck
354+ if : runner.os == 'Linux'
351355 run : nox -s docs -- -b linkcheck
352356
353357 - name : Manpage
354358 run : nox -s docs -- -b man -W
355359
356360 - name : Build docs with warnings as errors
361+ if : runner.os == 'Linux'
357362 run : nox -s docs -- -W
358363
359364 - name : Check examples
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ project(${SKBUILD_PROJECT_NAME} LANGUAGES C)
33
44find_package (
55 Python
6- COMPONENTS Interpreter Development.Module
6+ COMPONENTS Development.Module
77 REQUIRED)
88
99python_add_library(example MODULE example.c WITH_SOABI)
You can’t perform that action at this time.
0 commit comments