Skip to content

Commit b01cf43

Browse files
ci: fix broken workflows
1 parent 7ea7948 commit b01cf43

3 files changed

Lines changed: 3 additions & 5 deletions

File tree

.github/workflows/lib-ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,7 @@ jobs:
2626
enable-cache: true
2727

2828
- name: Set up Python
29-
run: uv python install
30-
with:
31-
python-version: ${{ matrix.python-version }}
29+
run: uv python install ${{ matrix.python-version }}
3230

3331
- name: Install the project
3432
run: uv sync --locked --all-extras --dev

.github/workflows/pre-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
enable-cache: 'auto'
2020

2121
- name: Install pre-commit
22-
run: uv pip install pre-commit
22+
run: uv pip install pre-commit --system
2323

2424
- uses: actions/cache@v4
2525
with:

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
# order for this workflow to be the owner of the PyPI publishing job, and can be verified. This limits
1212
# us to only allow this workflow to be allowed to publish to PyPI trustedly.
1313

14-
workflow_dispatch: # Trigger manually, if needed
14+
workflow_dispatch: # Trigger manually, if needed.
1515

1616
# NOTE!: When using Trusted Publishing to PyPI, we cannot do that from within a reusable workflow, therefore
1717
# we make it independent, and trigger it with published event from release-please workflow, instead of calling explicitly.

0 commit comments

Comments
 (0)