Speed up process with uv

This commit is contained in:
Raphael Michel
2024-10-24 23:11:05 +02:00
committed by Mira Weller
parent f559cd2618
commit 9b4506d5e5
3 changed files with 5 additions and 5 deletions

View File

@@ -53,7 +53,7 @@ jobs:
- name: Install system dependencies
run: sudo apt update && sudo apt install gettext
- name: Install Python dependencies
run: pip3 install --ignore-requires-python -e ".[dev]" psycopg2-binary # We ignore that flake8 needs newer python as we don't run flake8 during tests
run: pip3 install uv && uv pip install --system -e ".[dev]" psycopg2-binary
- name: Run checks
run: python manage.py check
working-directory: ./src