From b79a1b1cafc0c157997ba94d0f95173d76f96dd1 Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sat, 2 Mar 2024 04:50:30 -0600 Subject: [PATCH] ci(ruff): use ruff check warning: `ruff ` is deprecated. Use `ruff check ` instead. See also: https://github.com/astral-sh/ruff/blob/v0.3.0/CHANGELOG.md --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b2e7f153..d531f4a2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -30,10 +30,10 @@ jobs: python -V poetry run python -V - - name: Lint with ruff - run: poetry run ruff . + - name: Lint with ruff check + run: poetry run ruff check . - - name: Format with ruff + - name: Format with ruff format run: poetry run ruff format . --check - name: Lint with mypy