mirror of
https://github.com/python/cpython.git
synced 2025-12-31 12:33:28 +00:00
gh-91172: Create a workflow for verifying bundled pip and setuptools (GH-31885) (GH-94122)
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
(cherry picked from commit d36954b7ea)
Co-authored-by: Illia Volochii <illia.volochii@gmail.com>
This commit is contained in:
parent
798ace50f9
commit
4a28525614
3 changed files with 128 additions and 0 deletions
28
.github/workflows/verify-ensurepip-wheels.yml
vendored
Normal file
28
.github/workflows/verify-ensurepip-wheels.yml
vendored
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
name: Verify bundled pip and setuptools
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
paths:
|
||||
- 'Lib/ensurepip/_bundled/**'
|
||||
- '.github/workflows/verify-ensurepip-wheels.yml'
|
||||
- 'Tools/scripts/verify_ensurepip_wheels.py'
|
||||
pull_request:
|
||||
paths:
|
||||
- 'Lib/ensurepip/_bundled/**'
|
||||
- '.github/workflows/verify-ensurepip-wheels.yml'
|
||||
- 'Tools/scripts/verify_ensurepip_wheels.py'
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
verify:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: '3'
|
||||
- name: Compare checksums of bundled pip and setuptools to ones published on PyPI
|
||||
run: ./Tools/scripts/verify_ensurepip_wheels.py
|
||||
Loading…
Add table
Add a link
Reference in a new issue