mirror of
https://github.com/python/cpython.git
synced 2024-11-22 13:28:21 +01:00
686d65aec1
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4 to 5. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
34 lines
854 B
YAML
34 lines
854 B
YAML
name: Verify bundled wheels
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
paths:
|
|
- 'Lib/ensurepip/_bundled/**'
|
|
- '.github/workflows/verify-ensurepip-wheels.yml'
|
|
- 'Tools/build/verify_ensurepip_wheels.py'
|
|
pull_request:
|
|
paths:
|
|
- 'Lib/ensurepip/_bundled/**'
|
|
- '.github/workflows/verify-ensurepip-wheels.yml'
|
|
- 'Tools/build/verify_ensurepip_wheels.py'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
verify:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3'
|
|
- name: Compare checksum of bundled wheels to the ones published on PyPI
|
|
run: ./Tools/build/verify_ensurepip_wheels.py
|