We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77d4c7a commit 96d0903Copy full SHA for 96d0903
.github/workflows/deploy.yml
@@ -12,20 +12,23 @@ jobs:
12
steps:
13
- uses: actions/checkout@v4
14
15
- - name: Set up Python
16
- uses: actions/setup-python@v4
+ - name: Install uv
+ uses: astral-sh/setup-uv@v4
17
with:
18
- python-version: '3.10'
+ enable-cache: true
19
+
20
+ - name: Set up Python
21
+ run: uv python install 3.10
22
23
- name: Install dependencies
24
run: |
25
cd backend
- pip install -r requirements.txt || pip install -e .
26
+ uv sync
27
28
- name: Run tests
29
30
- python -m pytest tests/ -v
31
+ uv run pytest tests/ -v
32
33
deploy:
34
needs: test
0 commit comments