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/actions/setup-python-uv/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ runs:
shell: pwsh

- name: Install bcbench package
run: uv sync --no-group analysis ${{ inputs.all-extras == 'true' && '--all-extras' || '' }}
run: uv sync ${{ inputs.all-extras == 'true' && '--all-extras' || '' }}
shell: pwsh
6 changes: 3 additions & 3 deletions .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ on:
paths: [".github/workflows/copilot-setup-steps.yml"]

jobs:
copilot-setup-steps: # The job MUST be called this
copilot-setup-steps: # The job MUST be called this
runs-on: ubuntu-latest
permissions:
contents: read # Needed for checkout
contents: read # Needed for checkout

steps:
- name: Checkout code
Expand All @@ -29,7 +29,7 @@ jobs:
run: uv python install

- name: Install bcbench package with all dependencies
run: uv sync --all-extras
run: uv sync --all-groups

- name: Install pre-commit hooks
run: uv run pre-commit install
Expand Down
Loading
Loading