We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf06777 commit 4078351Copy full SHA for 4078351
action.yml
@@ -5,6 +5,10 @@ inputs:
5
description: "Should the action fail if errors are found? [default: true]"
6
required: false
7
default: "true"
8
+ mypy_target:
9
+ description: "Source directory for mypy linting"
10
+ required: false
11
+ default: "src"
12
runs:
13
using: "composite"
14
steps:
@@ -38,8 +42,7 @@ runs:
38
42
if: steps.changes.outputs.addedOrModifiedPython == 'true'
39
43
uses: tsuyoshicho/[email protected]
40
44
with:
41
- target: ""
- mypy_flags: ${{ steps.changes.outputs.addedOrModifiedPython_files }}
45
+ target: ${{ inputs.mypy_target }}
46
reporter: ${{ steps.reporter-check.outputs.reporter }}
47
48
- name: pylint
0 commit comments