diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2024-12-12 02:27:15 +0100 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2024-12-12 07:04:29 +0100 |
commit | 945d1e5189e9afa36b5e9fd83709cd95ff45f424 (patch) | |
tree | 8b9e502ef03d22280d8c539512a95033582d508a /.github/workflows | |
parent | test: also generate list of symbols from header files (diff) | |
download | systemd-945d1e5189e9afa36b5e9fd83709cd95ff45f424.tar.xz systemd-945d1e5189e9afa36b5e9fd83709cd95ff45f424.zip |
ci: enable linter for generate-sym-test.py
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/linter.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index d9f6a37680..4bcd594a09 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 |