Skip to content
Open
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
9 changes: 7 additions & 2 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,16 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: '3.12'
cache: 'pip'
- run: pip install --upgrade pip
- run: pip install uv
- run: uv venv
- run: |
echo ".venv/bin" >> $GITHUB_PATH
echo "VIRTUAL_ENV=.venv" >> $GITHUB_ENV
# TODO(markblee): Remove gcp,vertexai_tensorboard from CI. (needed by pytype)
- run: pip install '.[core,audio,orbax,dev,gcp,vertexai_tensorboard,open_api]'
- run: uv pip install '.[core,audio,orbax,dev,gcp,vertexai_tensorboard,open_api]'
# pylint uses approx 12GB of memory during this run, look into split to decrease?
- run: |
# Start memory monitor as a background process.
Expand Down