Test pip invalid version #9
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 pip invalid version | |
| on: | |
| workflow_dispatch: | |
| # push: | |
| jobs: | |
| test-invalid-pip: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [windows-latest, ubuntu-latest, macos-latest, macos-13, ubuntu-24.04-arm, windows-11-arm] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: priyagupta108/setup-python@pip-version-input | |
| with: | |
| python-version: '3.12' | |
| pip-version: 24.3.2 | |
| cache: 'pip' | |
| - name: Verify pip version | |
| run: pip --version | |
| - run: pip install -r requirements.txt | |