Skip to content

infra: bump actions/setup-python from 5.1.0 to 5.2.0 #2140

infra: bump actions/setup-python from 5.1.0 to 5.2.0

infra: bump actions/setup-python from 5.1.0 to 5.2.0 #2140

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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Set up Python
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
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: Install setuptools
run: python -m pip install --user --upgrade setuptools
- 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/*