Skip to content

fix: local import in job example #332

fix: local import in job example

fix: local import in job example #332

Workflow file for this run

name: Check long description for PyPI
on:
pull_request:
branches:
- main
- feature/**
permissions:
contents: read
jobs:
twine-check:
name: Check long description
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- name: Set up Python
uses: actions/setup-python@bd6b4b6205c4dbad673328db7b31b7fab9e241c0 # v4.6.1
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/*