Skip to content

Commit

Permalink
Add UV to both GHA workflows (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
yury-fedotov authored Jun 9, 2024
1 parent 7bbb675 commit aae4909
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/publish_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,6 @@ jobs:
path: .cache
restore-keys: |
mkdocs-material-
- run: pip install ".[docs]"
- run: pip install uv
- run: uv pip install ".[docs]"
- run: mkdocs gh-deploy --force
3 changes: 2 additions & 1 deletion .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install ".[dev]"
pip install uv
python -m uv pip install ".[dev]"
- name: Lint with ruff
run: |
ruff check --output-format=github .
Expand Down

0 comments on commit aae4909

Please sign in to comment.