From 945d1e5189e9afa36b5e9fd83709cd95ff45f424 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Thu, 12 Dec 2024 10:27:15 +0900 Subject: [PATCH] ci: enable linter for generate-sym-test.py --- .github/workflows/linter.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- 2.47.3