We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e6ab8f commit 0310e41Copy full SHA for 0310e41
.github/workflows/pypi.yml
@@ -15,6 +15,19 @@ jobs:
15
os: [ubuntu-latest]
16
python-version: ['3.10']
17
steps:
18
+ - uses: actions/checkout@v3
19
+ - name: Set up Python
20
+ uses: actions/setup-python@v3
21
+ with:
22
+ python-version: ${{ matrix.python-version }}
23
+ - name: Display Python version
24
+ run: |
25
+ python --version
26
+ pip --version
27
+ pip install coverage pep257 pre-commit pylint pytest readthedocs-sphinx-ext recommonmark setuptools sphinx sphinx-rtd-theme wheel
28
+ pip install .
29
+ python setup.py bdist_wheel
30
+ python setup.py sdist
31
- name: Publish package
32
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
33
uses: pypa/gh-action-pypi-publish@release/v1
0 commit comments