Skip to content

Update python-app.yml #691

Update python-app.yml

Update python-app.yml #691

Workflow file for this run

name: Test Python Versions
on: [push, pull_request]
jobs:
test:
runs-on: self-hosted
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: 3.13
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt