@@ -43,35 +43,35 @@ inputs:
43
43
extra-pylint-options :
44
44
description : " Extra options: pylint $(extra-pylint-options) $(python-root-list)"
45
45
required : false
46
- default : " '' "
46
+ default : " "
47
47
extra-pycodestyle-options :
48
48
description : " Extra options: pycodestyle $(extra-pycodestyle-options) $(python-root-list)"
49
49
required : false
50
- default : " '' "
50
+ default : " "
51
51
extra-flake8-options :
52
52
description : " Extra options: flake8 $(extra-flake8-options) $(python-root-list)"
53
53
required : false
54
- default : " '' "
54
+ default : " "
55
55
extra-black-options :
56
56
description : " Extra options: black --check $(extra-black-options) $(python-root-list)"
57
57
required : false
58
- default : " '' "
58
+ default : " "
59
59
extra-mypy-options :
60
60
description : " Extra options: mypy $(extra-mypy-options) $(python-root-list)"
61
61
required : false
62
- default : " '' "
62
+ default : " "
63
63
extra-isort-options :
64
64
description : " Extra options: isort -rc $(extra-isort-options) $(python-root-list) -c --diff "
65
65
required : false
66
- default : " '' "
66
+ default : " "
67
67
extra-vulture-options :
68
68
description : " Extra options: vulture $(extra-vulture-options) $(python-root-list)"
69
69
required : false
70
- default : " '' "
70
+ default : " "
71
71
extra-pydocstyle-options :
72
72
description : " Extra options: pydocstyle $(extra-pydocstyle-options) $(python-root-list)"
73
73
required : false
74
- default : " '' "
74
+ default : " "
75
75
conda-python-version :
76
76
description : " Tests are run in Conda environment, set desired python version with this keyword"
77
77
required : false
92
92
name: Install lintners
93
93
- run : >
94
94
${{ github.action_path }}/entrypoint.sh
95
- ${{ inputs.python-root-list }}
95
+ ' ${{ inputs.python-root-list }}'
96
96
${{ inputs.use-pylint }}
97
97
${{ inputs.use-pycodestyle }}
98
98
${{ inputs.use-flake8 }}
@@ -101,13 +101,13 @@ runs:
101
101
${{ inputs.use-isort }}
102
102
${{ inputs.use-vulture }}
103
103
${{ 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 }}'
112
112
shell: bash
113
113
name: Lint
0 commit comments