diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index af2de64..e6f8648 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: pip install -e .[test] - name: Lint with ruff run: | - ruff pqdict tests + ruff check pqdict tests - name: Static type check with mypy run: | mypy pqdict tests diff --git a/pyproject.toml b/pyproject.toml index 9636483..bc90cf5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -61,8 +61,8 @@ changelog = "https://github.com/nvictus/pqdict/blob/master/CHANGES" path = "pqdict/__init__.py" [tool.hatch.envs.default.scripts] -lint = "ruff ." -fix = "ruff --fix ." +lint = "ruff check ." +fix = "ruff check --fix ." test = "pytest" docs = "sphinx-autobuild docs docs/_build/html"