Test PR 1040 - Windows pip cache fix #3
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: 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 }}" | |