From 29d8d81020ccfec903781f2d903780a9fd7a18a1 Mon Sep 17 00:00:00 2001 From: igorcoding Date: Fri, 11 Oct 2024 16:49:48 +0300 Subject: [PATCH] fix --- .github/workflows/actions.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/actions.yaml b/.github/workflows/actions.yaml index 9776927..8bbf20e 100644 --- a/.github/workflows/actions.yaml +++ b/.github/workflows/actions.yaml @@ -28,13 +28,13 @@ jobs: run: uv sync --all-extras --dev - name: Run style check - run: uv run ruff format --check --diff $(package) + run: uv run ruff format --check --diff extapi tests - name: Run ruff - run: uv run ruff check $(package) + run: uv run ruff check extapi tests - name: Run mypy - run: uv run mypy --enable-error-code ignore-without-code $(package) + run: uv run mypy --enable-error-code ignore-without-code extapi tests - name: Run deptry run: uv run deptry . -e 'env|\.env|venv|\.venv|\..+'