From: Yu Watanabe Date: Thu, 12 Dec 2024 01:27:15 +0000 (+0900) Subject: ci: enable linter for generate-sym-test.py X-Git-Tag: v258-rc1~1886^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F35578%2Fhead;p=thirdparty%2Fsystemd.git ci: enable linter for generate-sym-test.py --- diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index d9f6a37680a..4bcd594a095 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -47,14 +47,14 @@ jobs: - name: Run mypy run: | python3 -m mypy --version - python3 -m mypy src/ukify/ukify.py test/integration-test-wrapper.py + python3 -m mypy src/test/generate-sym-test.py src/ukify/ukify.py test/integration-test-wrapper.py - name: Run ruff check run: | ruff --version - ruff check src/ukify/ukify.py test/integration-test-wrapper.py + ruff check src/test/generate-sym-test.py src/ukify/ukify.py test/integration-test-wrapper.py - name: Run ruff format run: | ruff --version - ruff format --check src/ukify/ukify.py test/integration-test-wrapper.py + ruff format --check src/test/generate-sym-test.py src/ukify/ukify.py test/integration-test-wrapper.py