CI: Install dependencies with uv for speedup (#4558)

This commit is contained in:
Raphael Michel
2024-10-25 17:05:58 +02:00
committed by GitHub
parent 0cd1290624
commit cbee1b71fe
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -52,7 +52,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