Skip to content

Commit b23556f

Browse files
committed
fix artifact name and remove py3.10
1 parent f9dc53f commit b23556f

File tree

1 file changed

+18
-4
lines changed

1 file changed

+18
-4
lines changed

.github/workflows/pyhton.generate-wrapper.yml

+18-4
Original file line numberDiff line numberDiff 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"
@@ -66,7 +66,7 @@ jobs:
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:
@@ -94,4 +94,18 @@ jobs:
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+

0 commit comments

Comments
 (0)