From c32d690e62c4eac43b330aca1b44afad9916d9df Mon Sep 17 00:00:00 2001 From: "Christian Y. Brenninkmeijer" Date: Tue, 21 May 2024 18:23:10 +0100 Subject: [PATCH] mypy pylint_packages --- actions/test-and-check/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/test-and-check/action.yml b/actions/test-and-check/action.yml index 62a209d..7187363 100644 --- a/actions/test-and-check/action.yml +++ b/actions/test-and-check/action.yml @@ -35,7 +35,7 @@ inputs: description: The name of the Python package (or packages) to flake8 required: true pylint_packages: - description: The name of the Python package (or packages) to pylint + description: The name of the Python package (or packages) to pylint and mypy required: true runs: @@ -73,4 +73,4 @@ runs: - name: Lint with mypy shell: bash - run: mypy $ROOT_PKG + run: mypy ${{ inputs.pylint_packages }}