Run make regen-configure to ensure it is up-to-date after rebase #1
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 | |
| with: | |
| python-version: '3' | |
| - name: Compare checksum of bundled wheels to the ones published on PyPI | |
| run: ./Tools/build/verify_ensurepip_wheels.py |