File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed
Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 11# Changes here will be overwritten by Copier
2- _commit : 9b579a3
2+ _commit : 2ac7460
33_src_path : https://github.com/python-project-templates/base.git
44add_docs : true
55add_extension : python
Original file line number Diff line number Diff line change 7474 - name : Make dist
7575 run : make dist
7676
77+ - name : Test wheel install
78+ run : |
79+ python -m venv /tmp/test-wheel
80+ /tmp/test-wheel/bin/pip install dist/*.whl
81+ /tmp/test-wheel/bin/python -c "import python_template"
82+
83+ - name : Test sdist install
84+ run : |
85+ python -m venv /tmp/test-sdist
86+ /tmp/test-sdist/bin/pip install dist/*.tar.gz
87+ /tmp/test-sdist/bin/python -c "import python_template"
88+
7789 - uses : actions/upload-artifact@v7
7890 with :
7991 name : dist-${{matrix.os}}
You can’t perform that action at this time.
0 commit comments