File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -62,14 +62,11 @@ runs:
62
62
shell : bash
63
63
run : |
64
64
pre-commit run --all-files
65
- - name : Install pytest
66
- shell : bash
67
- run : pip install pytest
68
65
- name : Run pytest
69
66
shell : bash
70
67
run : |
71
68
if [[ -d tests ]]; then
72
- pip install .
69
+ pip install pytest
73
70
pytest
74
71
fi
75
72
- name : Add the given package filename_prefix
@@ -104,6 +101,10 @@ runs:
104
101
shell : bash
105
102
run : |
106
103
echo pyproject-toml=$( find . -wholename './pyproject.toml' ) >> $GITHUB_OUTPUT
104
+ - name : Check packaging information
105
+ if : contains(steps.need-pypi.outputs.pyproject-toml, 'pyproject.toml')
106
+ shell : bash
107
+ run : python actions-ci/check_lib_packaging.py
107
108
- name : Build Python package
108
109
if : contains(steps.need-pypi.outputs.pyproject-toml, 'pyproject.toml')
109
110
shell : bash
You can’t perform that action at this time.
0 commit comments