Skip to content
Merged
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
16 changes: 8 additions & 8 deletions .github/workflows/profile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,24 +38,24 @@ jobs:
- name: Load environment file
uses: ./.github/actions/load-env

- name: Fetch latest supported Python
if: inputs.python == ''
id: latest-supported-python
uses: ./.github/actions/latest-supported-python
with:
github-token: "${{ github.token }}"

- name: Install Python
uses: actions/setup-python@v6
with:
python-version-file: pyproject.toml
python-version: "${{ inputs.python || steps.latest-supported-python.outputs.version }}"

- name: Install uv
uses: astral-sh/setup-uv@v7

- name: Install command runner
run: uv tool install rust-just

- name: Fetch latest supported Python
if: inputs.python == ''
id: latest-supported-python
uses: ./.github/actions/latest-supported-python
with:
github-token: "${{ github.token }}"

- name: Set profiling environment metadata
id: metadata
shell: bash
Expand Down