Skip to content

Update python-app-2.yml #2

Update python-app-2.yml

Update python-app-2.yml #2

Workflow file for this run

name: Test Python Versions
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-latest, macos-13]
python-version: ['3.13', '3.12']
env:
PIP_NO_PYTHON_VERSION_WARNING: 1
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
# uses: actions/setup-python@v5
uses: priyagupta108/setup-python@test-1034-fix
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