Skip to content

Commit a7b90b0

Browse files
committed
Stop installing unneeded deps
1 parent e51101a commit a7b90b0

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/build-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
pyproject.toml
6060
uv.lock
6161
- name: Install docs extras
62-
run: uv sync --locked --group docs
62+
run: uv sync --locked --no-dev --group docs
6363
- uses: actions/cache@v5
6464
with:
6565
key: mkdocs-cards-${{ github.ref }}

.github/workflows/deploy-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
pyproject.toml
3434
uv.lock
3535
- name: Install GitHub Actions dependencies
36-
run: uv sync --locked --group github-actions
36+
run: uv sync --locked --no-dev --group github-actions
3737
- name: Deploy Docs Status Pending
3838
run: uv run ./scripts/deploy_docs_status.py
3939
env:

.github/workflows/smokeshow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
cache-dependency-glob: |
2323
pyproject.toml
2424
uv.lock
25-
- run: uv sync --locked --group github-actions
25+
- run: uv sync --locked --no-dev --group github-actions
2626
- uses: actions/download-artifact@v7
2727
with:
2828
name: coverage-html

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
with:
6565
limit-access-to-actor: true
6666
- name: Install Dependencies
67-
run: uv sync --locked --group tests
67+
run: uv sync --locked --no-dev --group tests
6868
- run: mkdir coverage
6969
- name: Test
7070
run: uv run bash scripts/test.sh
@@ -101,7 +101,7 @@ jobs:
101101
path: coverage
102102
merge-multiple: true
103103
- name: Install Dependencies
104-
run: uv sync --locked --group tests
104+
run: uv sync --locked --no-dev --group tests
105105
- run: ls -la coverage
106106
- run: uv run coverage combine coverage
107107
- run: uv run coverage html --title "Coverage for ${{ github.sha }}"

0 commit comments

Comments
 (0)