Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
enable-cache: true
cache-dependency-glob: "${{ inputs.working-directory }}/uv.lock"

- uses: actions/setup-python@v6
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
with:
python-version: ${{ inputs.python_version }}

Comment on lines +52 to 55
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/test.python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ on:
required: false
type: string
default: "ubuntu-latest"
uv-operations:
required: false
type: string
default: "pytest"
description: "UV operations passed to uv run: uv run <operations>"

jobs:
test:
Expand All @@ -41,4 +46,4 @@ jobs:

- name: Run tests
working-directory: ${{ inputs.working-directory }}
run: uv run pytest
run: uv run ${{ inputs.uv-operations }}