@@ -43,35 +43,35 @@ inputs:
4343 extra-pylint-options :
4444 description : " Extra options: pylint $(extra-pylint-options) $(python-root-list)"
4545 required : false
46- default : " '' "
46+ default : " "
4747 extra-pycodestyle-options :
4848 description : " Extra options: pycodestyle $(extra-pycodestyle-options) $(python-root-list)"
4949 required : false
50- default : " '' "
50+ default : " "
5151 extra-flake8-options :
5252 description : " Extra options: flake8 $(extra-flake8-options) $(python-root-list)"
5353 required : false
54- default : " '' "
54+ default : " "
5555 extra-black-options :
5656 description : " Extra options: black --check $(extra-black-options) $(python-root-list)"
5757 required : false
58- default : " '' "
58+ default : " "
5959 extra-mypy-options :
6060 description : " Extra options: mypy $(extra-mypy-options) $(python-root-list)"
6161 required : false
62- default : " '' "
62+ default : " "
6363 extra-isort-options :
6464 description : " Extra options: isort -rc $(extra-isort-options) $(python-root-list) -c --diff "
6565 required : false
66- default : " '' "
66+ default : " "
6767 extra-vulture-options :
6868 description : " Extra options: vulture $(extra-vulture-options) $(python-root-list)"
6969 required : false
70- default : " '' "
70+ default : " "
7171 extra-pydocstyle-options :
7272 description : " Extra options: pydocstyle $(extra-pydocstyle-options) $(python-root-list)"
7373 required : false
74- default : " '' "
74+ default : " "
7575 conda-python-version :
7676 description : " Tests are run in Conda environment, set desired python version with this keyword"
7777 required : false
9292 name: Install lintners
9393 - run : >
9494 ${{ github.action_path }}/entrypoint.sh
95- ${{ inputs.python-root-list }}
95+ ' ${{ inputs.python-root-list }}'
9696 ${{ inputs.use-pylint }}
9797 ${{ inputs.use-pycodestyle }}
9898 ${{ inputs.use-flake8 }}
@@ -101,13 +101,13 @@ runs:
101101 ${{ inputs.use-isort }}
102102 ${{ inputs.use-vulture }}
103103 ${{ inputs.use-pydocstyle }}
104- ${{ inputs.extra-pylint-options }}
105- ${{ inputs.extra-pycodestyle-options }}
106- ${{ inputs.extra-flake8-options }}
107- ${{ inputs.extra-black-options }}
108- ${{ inputs.extra-mypy-options }}
109- ${{ inputs.extra-isort-options }}
110- ${{ inputs.extra-vulture-options }}
111- ${{ inputs.extra-pydocstyle-options }}
104+ ' ${{ inputs.extra-pylint-options }}'
105+ ' ${{ inputs.extra-pycodestyle-options }}'
106+ ' ${{ inputs.extra-flake8-options }}'
107+ ' ${{ inputs.extra-black-options }}'
108+ ' ${{ inputs.extra-mypy-options }}'
109+ ' ${{ inputs.extra-isort-options }}'
110+ ' ${{ inputs.extra-vulture-options }}'
111+ ' ${{ inputs.extra-pydocstyle-options }}'
112112 shell: bash
113113 name: Lint
0 commit comments