We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07e6b72 commit 671c11dCopy full SHA for 671c11d
1 file changed
.github/workflows/pypi_release.yml
@@ -12,14 +12,12 @@ jobs:
12
- uses: actions/checkout@v4
13
with:
14
persist-credentials: false
15
- - name: Set up Python
16
- uses: actions/setup-python@v5
17
- with:
18
- python-version: "3.x"
19
- name: Install uv
20
- run: >-
21
- curl -LsSf https://astral.sh/uv/install.sh | sh &&
22
- echo "$HOME/.cargo/bin" >> $GITHUB_PATH
+ uses: astral-sh/setup-uv@v5
+ - name: Set up Python
+ run: uv python install
+ - name: Install the project
+ run: uv sync --locked --all-extras --dev
23
- name: Build a binary wheel and a source tarball
24
run: uv build
25
- name: Store the distribution packages
0 commit comments