Skip to content

Test PR 1040 - Windows pip cache fix #3

Test PR 1040 - Windows pip cache fix

Test PR 1040 - Windows pip cache fix #3

Workflow file for this run

name: Test PR 1040 - Windows pip cache fix
on:
workflow_dispatch:
jobs:
baseline-with-old-pip:
name: baseline - py${{ matrix.python-version }}
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.12', '3.14']
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Pin pip to a stderr-warning version
run: python -m pip install --force-reinstall "pip==22.0.2"
- name: Setup Python with cache (baseline @v5)
id: setup
continue-on-error: true
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Report
shell: pwsh
run: |
Write-Host "Outcome: ${{ steps.setup.outcome }}"