Skip to content

infra: bump actions/checkout from 4.1.7 to 4.2.0 #2130

infra: bump actions/checkout from 4.1.7 to 4.2.0

infra: bump actions/checkout from 4.1.7 to 4.2.0 #2130

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@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- name: Set up Python
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.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/*