Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@ inputs:
description: "Should the action fail if errors are found? [default: true]"
required: false
default: "true"
mypy_target:
description: "Source directory for mypy linting"
required: false
default: "src"
runs:
using: "composite"
steps:
Expand Down Expand Up @@ -40,9 +36,9 @@ runs:

- name: mypy
if: steps.changes.outputs.addedOrModifiedPython == 'true'
uses: tsuyoshicho/action-mypy@v3.11.0
uses: tsuyoshicho/action-mypy@v3.13.0
with:
target: ${{ inputs.mypy_target }}
target: ${{ steps.changes.outputs.addedOrModifiedPython_files }}
reporter: ${{ steps.reporter-check.outputs.reporter }}

- name: pylint
Expand Down