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/bump-version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

- name: Install dependencies
run: |
uv sync --group release
uv sync --only-group release

- name: Bump version
id: bump
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dev-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
uses: astral-sh/setup-uv@v6
- name: Install dependencies
run: |
uv sync --group release
uv sync --only-group release
- name: Bump to dev
run: uv run tbump --only-patch --non-interactive $(./scripts/next_dev.sh)
- name: Build ${{ matrix.component }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rw-python-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
python-version: 3.13
- name: Install dependencies
run: |
uv sync --group lint
uv sync --only-group lint
- name: pep8 and formatting check
run: |
make format
Expand All @@ -51,7 +51,7 @@ jobs:
uses: astral-sh/setup-uv@v6
- name: Install dependencies
run: |
uv sync --group tox --group type
uv sync --only-group tox --only-group type
- name: mypy check
run: |
make mypy
Loading