Update Python version and requirements path in workflow

This commit is contained in:
Yaosanqi137
2025-11-13 19:33:07 +08:00
committed by GitHub
parent fe2fa34db4
commit e02a711416
+2 -2
View File
@@ -13,7 +13,7 @@ jobs:
strategy: strategy:
max-parallel: 4 max-parallel: 4
matrix: matrix:
python-version: [3.9, 3.10, 3.11] python-version: [3.11]
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
@@ -24,7 +24,7 @@ jobs:
- name: Install Dependencies - name: Install Dependencies
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install -r requirements.txt pip install -r ./src/backend/requirements.txt
- name: Run Tests - name: Run Tests
run: | run: |
python manage.py test python manage.py test