File tree 1 file changed +18
-4
lines changed
1 file changed +18
-4
lines changed Original file line number Diff line number Diff line change @@ -28,12 +28,12 @@ jobs:
28
28
with :
29
29
name : swig-sources
30
30
path : python-wrapper/swig/**
31
- if-no-files-found : error
31
+ if-no-files-found : error
32
32
build :
33
33
continue-on-error : true
34
34
strategy :
35
35
matrix :
36
- py-version : ["3.8", "3.9", "3.10" ]
36
+ py-version : ["3.8", "3.9"]
37
37
os : [ubuntu-22.04, windows-2019, macOS-15]
38
38
fail-fast : false
39
39
runs-on : " ubuntu-22.04"
66
66
run : python3 setup.py bdist_wheel
67
67
- uses : actions/upload-artifact@v4
68
68
with :
69
- name : ${{ matrix.py_version }}_${{ matrix.os}}_build
69
+ name : py_ ${{ matrix.py_version }}_${{ matrix.os}}_build
70
70
path : python-wrapper/dist/**
71
71
if-no-files-found : error
72
72
py3p8_linux_sdist :
94
94
with :
95
95
name : source_dist
96
96
path : python-wrapper/dist/**
97
- if-no-files-found : error
97
+ if-no-files-found : error
98
+
99
+ check_rst_syntax :
100
+ runs-on : " ubuntu-22.04"
101
+ steps :
102
+ - uses : actions/checkout@v4
103
+ - uses : actions/setup-python@v5
104
+ with :
105
+ python-version : 3.8
106
+ - name : install rst linter
107
+ run : pip install restructuredtext-lint pygments
108
+ - name : run
109
+ run : rst-lint *.rst
110
+
111
+
You can’t perform that action at this time.
0 commit comments