File tree 2 files changed +8
-3
lines changed
docs/examples/getting_started/c
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -331,9 +331,12 @@ jobs:
331
331
- uses : hynek/build-and-inspect-python-package@v2
332
332
333
333
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 }}
336
336
timeout-minutes : 15
337
+ strategy :
338
+ matrix :
339
+ runs-on : [ubuntu-latest, macos-latest, windows-latest]
337
340
338
341
steps :
339
342
- uses : actions/checkout@v4
@@ -348,12 +351,14 @@ jobs:
348
351
python-versions : " 3.12"
349
352
350
353
- name : Linkcheck
354
+ if : runner.os == 'Linux'
351
355
run : nox -s docs -- -b linkcheck
352
356
353
357
- name : Manpage
354
358
run : nox -s docs -- -b man -W
355
359
356
360
- name : Build docs with warnings as errors
361
+ if : runner.os == 'Linux'
357
362
run : nox -s docs -- -W
358
363
359
364
- name : Check examples
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ project(${SKBUILD_PROJECT_NAME} LANGUAGES C)
3
3
4
4
find_package (
5
5
Python
6
- COMPONENTS Interpreter Development.Module
6
+ COMPONENTS Development.Module
7
7
REQUIRED)
8
8
9
9
python_add_library(example MODULE example.c WITH_SOABI)
You can’t perform that action at this time.
0 commit comments