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.
2 parents 4078351 + 9769a44 commit 4242566Copy full SHA for 4242566
action.yml
@@ -5,10 +5,6 @@ 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:
@@ -40,9 +36,9 @@ runs:
40
36
41
37
- name: mypy
42
38
if: steps.changes.outputs.addedOrModifiedPython == 'true'
43
- uses: tsuyoshicho/action-mypy@v3.11.0
39
+ uses: tsuyoshicho/action-mypy@v3.13.0
44
with:
45
- target: ${{ inputs.mypy_target }}
+ target: ${{ steps.changes.outputs.addedOrModifiedPython_files }}
46
reporter: ${{ steps.reporter-check.outputs.reporter }}
47
48
- name: pylint
0 commit comments