reduce venv size

This commit is contained in:
David Lord 2026-04-05 11:13:13 -07:00
parent 83dbcb222a
commit b21425d6df
No known key found for this signature in database
GPG key ID: 43368A7AA8CC5926
2 changed files with 3 additions and 3 deletions

View file

@ -26,4 +26,4 @@ jobs:
with: with:
path: ~/.cache/pre-commit path: ~/.cache/pre-commit
key: pre-commit|${{ hashFiles('pyproject.toml', '.pre-commit-config.yaml') }} key: pre-commit|${{ hashFiles('pyproject.toml', '.pre-commit-config.yaml') }}
- run: uv run --locked --group pre-commit pre-commit run --show-diff-on-failure --color=always --all-files - run: uv run --locked --no-default-groups --group pre-commit pre-commit run --show-diff-on-failure --color=always --all-files

View file

@ -40,7 +40,7 @@ jobs:
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 - uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with: with:
python-version: ${{ matrix.python }} python-version: ${{ matrix.python }}
- run: uv run --locked tox run - run: uv run --locked --no-default-groups --group dev tox run
env: env:
TOX_ENV: ${{ matrix.tox || format('py{0}', matrix.python) }} TOX_ENV: ${{ matrix.tox || format('py{0}', matrix.python) }}
typing: typing:
@ -61,4 +61,4 @@ jobs:
with: with:
path: ./.mypy_cache path: ./.mypy_cache
key: mypy|${{ hashFiles('pyproject.toml') }} key: mypy|${{ hashFiles('pyproject.toml') }}
- run: uv run --locked tox run -e typing - run: uv run --locked --no-default-groups --group dev tox run -e typing