Skip to content

Update python-app.yml #659

Update python-app.yml

Update python-app.yml #659

Workflow file for this run

name: Test Python Versions
on: [push, pull_request]
jobs:
test:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.13.1', '3.12.8', '3.9', '3.10', '3.11', '3.8']
env:
PIP_NO_PYTHON_VERSION_WARNING: 1
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
# uses: actions/[email protected]
uses: priyagupta108/setup-python@issue-1034
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path:
requirements/*.txt
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements/requirements.txt