Skip to content

Commit

Permalink
Debugging the uv run in GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
amjith committed Sep 8, 2024
1 parent f6f6e81 commit 32d160b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Run unit tests
run: uv run tox -e py${{ matrix.python-version }}
run: uv run --verbose tox -e py${{ matrix.python-version }}

- name: Run Style Checks
run: uv run tox -e style
run: uv run --verbose tox -e style
1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ commands = uv pip install -e .[dev]
coverage report -m

[testenv:style]
skip_install = true
deps = ruff
commands = ruff check --fix
ruff format

0 comments on commit 32d160b

Please sign in to comment.