File tree Expand file tree Collapse file tree 1 file changed +18
-4
lines changed Expand file tree Collapse file tree 1 file changed +18
-4
lines changed Original file line number Diff line number Diff line change @@ -28,12 +28,12 @@ jobs:
2828 with :
2929 name : swig-sources
3030 path : python-wrapper/swig/**
31- if-no-files-found : error
31+ if-no-files-found : error
3232 build :
3333 continue-on-error : true
3434 strategy :
3535 matrix :
36- py-version : ["3.8", "3.9", "3.10" ]
36+ py-version : ["3.8", "3.9"]
3737 os : [ubuntu-22.04, windows-2019, macOS-15]
3838 fail-fast : false
3939 runs-on : " ubuntu-22.04"
6666 run : python3 setup.py bdist_wheel
6767 - uses : actions/upload-artifact@v4
6868 with :
69- name : ${{ matrix.py_version }}_${{ matrix.os}}_build
69+ name : py_ ${{ matrix.py_version }}_${{ matrix.os}}_build
7070 path : python-wrapper/dist/**
7171 if-no-files-found : error
7272 py3p8_linux_sdist :
9494 with :
9595 name : source_dist
9696 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