feat: pulse programming support for OQC Lucy #114
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check long description for PyPI | |
on: | |
pull_request: | |
branches: | |
- main | |
- feature/** | |
jobs: | |
twine-check: | |
name: Check long description | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install wheel | |
run: python -m pip install --user --upgrade wheel | |
- name: Install twine | |
run: python -m pip install --user --upgrade twine | |
- name: Build a binary wheel and a source tarball | |
run: python setup.py sdist bdist_wheel | |
- name: Check that long description will render correctly on PyPI. | |
run: twine check dist/* |