2023-04-18 06:43:34 +02:00
|
|
|
name: Verify bundled wheels
|
2022-06-22 15:32:22 +02:00
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- 'Lib/ensurepip/_bundled/**'
|
|
|
|
- '.github/workflows/verify-ensurepip-wheels.yml'
|
2022-10-17 12:01:00 +02:00
|
|
|
- 'Tools/build/verify_ensurepip_wheels.py'
|
2022-06-22 15:32:22 +02:00
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- 'Lib/ensurepip/_bundled/**'
|
|
|
|
- '.github/workflows/verify-ensurepip-wheels.yml'
|
2022-10-17 12:01:00 +02:00
|
|
|
- 'Tools/build/verify_ensurepip_wheels.py'
|
2022-06-22 15:32:22 +02:00
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2022-10-08 21:21:38 +02:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2022-06-22 15:32:22 +02:00
|
|
|
jobs:
|
|
|
|
verify:
|
|
|
|
runs-on: ubuntu-latest
|
2023-04-14 11:01:10 +02:00
|
|
|
timeout-minutes: 10
|
2022-06-22 15:32:22 +02:00
|
|
|
steps:
|
2023-09-04 22:36:16 +02:00
|
|
|
- uses: actions/checkout@v4
|
2024-01-01 10:25:58 +01:00
|
|
|
- uses: actions/setup-python@v5
|
2022-06-22 15:32:22 +02:00
|
|
|
with:
|
|
|
|
python-version: '3'
|
2023-04-18 06:43:34 +02:00
|
|
|
- name: Compare checksum of bundled wheels to the ones published on PyPI
|
2022-10-17 12:01:00 +02:00
|
|
|
run: ./Tools/build/verify_ensurepip_wheels.py
|