Skip to content

Commit

Permalink
ci: try to use uv in lint pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasjuhrich committed Apr 5, 2024
1 parent 35d4bfe commit 795a40b
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,11 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
- name: print information about pip cache
run: pip cache info && pip cache list
- name: ensure presence of `wheel`
run: pip install wheel
# cache: 'pip'
- name: ensure presence of `uv` and `wheel`
run: pip install uv wheel && uv pip list
- name: install pip dependencies
run: pip install -r requirements.txt -r requirements.dev.txt
run: uv pip sync requirements.dev.txt && uv pip install . deps/wtforms-widgets
id: pip-install
# now come the tests
- name: Execute ruff
Expand Down

0 comments on commit 795a40b

Please sign in to comment.