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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ jobs:
- name: Sync Python tools
env:
UV_PYTHON: ${{ steps.setup-python.outputs.python-path }}
run: uv sync --locked --only-group test-python
run: uv sync --locked --only-group test-python --no-build

- name: Test with pytest
id: test
run: uv run --locked --only-group test-python pytest
run: uv run --locked --only-group test-python --no-build pytest

- name: Upload test coverage
# any except canceled or skipped
Expand Down
12 changes: 9 additions & 3 deletions .github/workflows/localize.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,16 @@

- name: Sync Python tools
run: |
uv sync --project .lizardbyte-common --frozen --group locale \
--no-default-groups \
--python "${PYTHON_VERSION}" \
uv_sync_args=(
--project .lizardbyte-common
--frozen
--group locale
--no-default-groups
--python "${PYTHON_VERSION}"
--no-python-downloads
)
# The workflow SHA pins reviewed project code; building it installs the required lb-* entry points.
uv sync "${uv_sync_args[@]}" # NOSONAR(githubactions:S8541)

Check warning on line 68 in .github/workflows/localize.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Using dependencies without locking resolved versions is security-sensitive.

See more on https://sonarcloud.io/project/issues?id=LizardByte_lizardbyte-common&issues=AZ-mNZyjIw9_wrMuAHht&open=AZ-mNZyjIw9_wrMuAHht&pullRequest=41

- name: Set up xgettext
run: |
Expand Down