From b912b29d295382652c27502c5dbc8e420076e857 Mon Sep 17 00:00:00 2001 From: Nils <31704359+mietzen@users.noreply.github.com> Date: Mon, 12 Aug 2024 08:50:56 +0200 Subject: [PATCH] Use ruff check --- .github/workflows/lint_and_test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint_and_test.yml b/.github/workflows/lint_and_test.yml index f441b58..314bc34 100644 --- a/.github/workflows/lint_and_test.yml +++ b/.github/workflows/lint_and_test.yml @@ -33,7 +33,7 @@ jobs: run: | # stop the build if there are Python syntax errors or undefined names PY_VER=$(echo py${PY_VER} | tr -d '.') - ruff --output-format=github --ignore=E501 --exclude=__init__.py --target-version=${PY_VER} ./porkbun_ddns + ruff check --output-format=github --ignore=E501 --exclude=__init__.py --target-version=${PY_VER} ./porkbun_ddns Check-Test: if: ${{ always() }} @@ -47,4 +47,4 @@ jobs: exit 0 else exit 1 - fi \ No newline at end of file + fi