diff options
author | Daan De Meyer <daan.j.demeyer@gmail.com> | 2024-11-23 12:54:02 +0100 |
---|---|---|
committer | Daan De Meyer <daan.j.demeyer@gmail.com> | 2024-11-24 16:47:20 +0100 |
commit | f458a60391f7175c9f1df7fd45c7706d02f8b233 (patch) | |
tree | aaf80276994d5c37a62aec7f3c7dba441a0a83c3 /.github/workflows/linter.yml | |
parent | test: Fix typing errors in integration-test-wrapper.py (diff) | |
download | systemd-f458a60391f7175c9f1df7fd45c7706d02f8b233.tar.xz systemd-f458a60391f7175c9f1df7fd45c7706d02f8b233.zip |
test: Lint integration-test-wrapper.py
Diffstat (limited to '.github/workflows/linter.yml')
-rw-r--r-- | .github/workflows/linter.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index bf93682bd8..d9f6a37680 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -37,7 +37,7 @@ jobs: VALIDATE_GITHUB_ACTIONS: true - name: Check that tabs are not used in Python code - run: sh -c '! git grep -P "\\t" -- src/ukify/ukify.py' + run: sh -c '! git grep -P "\\t" -- src/ukify/ukify.py test/integration-test-wrapper.py' - name: Install ruff and mypy run: | @@ -47,14 +47,14 @@ jobs: - name: Run mypy run: | python3 -m mypy --version - python3 -m mypy src/ukify/ukify.py + python3 -m mypy src/ukify/ukify.py test/integration-test-wrapper.py - name: Run ruff check run: | ruff --version - ruff check src/ukify/ukify.py + ruff check src/ukify/ukify.py test/integration-test-wrapper.py - name: Run ruff format run: | ruff --version - ruff format --check src/ukify/ukify.py + ruff format --check src/ukify/ukify.py test/integration-test-wrapper.py |