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.
uv
1 parent 6ed7aee commit 284527bCopy full SHA for 284527b
.github/workflows/generate-client.yml
@@ -22,11 +22,18 @@ jobs:
22
- uses: actions/setup-python@v5
23
with:
24
python-version: '3.10'
25
+ - name: Install uv
26
+ uses: astral-sh/setup-uv@v2
27
+ with:
28
+ version: "0.4.15"
29
- name: Install dependencies
30
run: npm ci
31
working-directory: frontend
- - run: pip install ./backend
- - run: bash scripts/generate-client.sh
32
+ - run: uv sync
33
+ working-directory: backend
34
+ - run: uv run bash scripts/generate-client.sh
35
+ env:
36
+ VIRTUAL_ENV: backend/.venv
37
- name: Commit changes
38
run: |
39
git config --local user.email "[email protected]"
@@ -46,4 +53,3 @@ jobs:
46
53
uses: re-actors/alls-green@release/v1
47
54
48
55
jobs: ${{ toJSON(needs) }}
49
-
0 commit comments