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
+2 -2
View File
@@ -37,7 +37,7 @@ jobs:
- name: Install system packages
run: sudo apt update && sudo apt install gettext
- name: Install Dependencies
run: pip3 install -e ".[dev]"
run: pip3 install uv && uv pip install --system -e ".[dev]"
- name: Compile messages
run: python manage.py compilemessages
working-directory: ./src
@@ -62,7 +62,7 @@ jobs:
- name: Install system packages
run: sudo apt update && sudo apt install enchant-2 hunspell hunspell-de-de aspell-en aspell-de
- name: Install Dependencies
run: pip3 install -e ".[dev]"
run: pip3 install uv && uv pip install --system -e ".[dev]"
- name: Spellcheck translations
run: potypo
working-directory: ./src