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 build
1 parent 66801c5 commit 0e353a1Copy full SHA for 0e353a1
.github/workflows/semantic-release.yaml
@@ -24,10 +24,18 @@ jobs:
24
#ssh-key: ${{ secrets.DEPLOY_KEY }}
25
fetch-depth: 0
26
27
- #- name: Setup Python
28
- # uses: actions/setup-python@v5
29
- # with:
30
- # python-version: "3.11"
+ - name: Setup Python
+ uses: actions/setup-python@v5
+ with:
+ python-version: "3.11"
31
+
32
+ - name: Install uv and sync dev dependencies
33
+ run: |
34
+ pip install uv
35
+ uv venv
36
+ echo "VIRTUAL_ENV=$PWD/.venv" >> $GITHUB_ENV
37
+ echo "$PWD/.venv/bin" >> $GITHUB_PATH
38
+ uv sync --dev
39
40
- name: Python Semantic Release
41
id: release
0 commit comments