forked from rahul-deepsource/pyaction
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathentrypoint.sh
executable file
·179 lines (136 loc) · 3.38 KB
/
entrypoint.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
# Parameters
#
# $1 - python-root-list
# $2 - use-pylint
# $3 - use-pycodestyle
# $4 - use-flake8
# $5 - use-black
# $6 - use-mypy
# $7 - use-isort
# $8 - use-vulture
# $9 - use-pydocstyle
# ${10} - extra-pylint-options
# ${11} - extra-pycodestyle-options
# ${12} - extra-flake8-options
# ${13} - extra-black-options
# ${14} - extra-mypy-options
# ${15} - extra-isort-options
# ${16} - extra-vulture-options
# ${17} - extra-pydocstyle-options
echo python-root-list: $1
echo use-pylint: $2
echo use-pycodestyle: $3
echo use-flake8: $4
echo use-black: $5
echo use-mypy: $6
echo use-isort: $7
echo use-vulture: $8
echo use-pydocstyle $9
echo extra-pylint-options: ${10}
echo extra-pycodestyle-options: ${11}
echo extra-flake8-options: ${12}
echo extra-black-options: ${13}
echo extra-mypy-options: ${14}
echo extra-isort-options: ${15}
echo extra-vulture-options: ${16}
echo extra-pydocstyle-options: ${17}
# actions path has the copy of this actions repo
echo $RUNNER_OS
if [ $RUNNER_OS = 'Windows' ]
then
MATCHERS=$GITHUB_ACTION_PATH\matchers\*.json
else
MATCHERS=$GITHUB_ACTION_PATH/matchers/*.json
fi
echo $MATCHERS
for matcher in $MATCHERS
do
echo adding matcher $matcher
echo "::add-matcher::${matcher}"
done
echo "TERM: changing from $TERM -> xterm"
export TERM=xterm
if [ "$2" = true ] ; then
echo Running: pylint ${10} $1
pylint --output-format="colorized" ${10} $1
exit_code=$?
if [ "$exit_code" = "0" ]; then
echo "Pylint ok"
else
echo "Pylint error"
fi
fi
if [ "$3" = true ] ; then
echo Running: pycodestyle ${11} $1
pycodestyle ${11} $1
exit_code=$?
if [ "$exit_code" = "0" ]; then
echo "pycodestyle ok"
else
echo "pycodestyle error"
fi
fi
if [ "$4" = true ] ; then
echo Running: flake8 ${12} $1
flake8 ${12} $1
exit_code=$?
if [ "$exit_code" = "0" ]; then
echo "Flake8 ok"
else
echo "Flake8 error"
fi
fi
if [ "$5" = true ] ; then
echo Running: black --check ${13} $1
black --check ${13} $1
exit_code=$?
if [ "$exit_code" = "0" ]; then
echo "Black ok"
else
echo "Black error"
fi
fi
if [ "$6" = true ] ; then
echo Running: mypy --install-types --non-interactive --ignore-missing-imports --follow-imports=silent --show-column-numbers ${14} $1
mypy \
--install-types --non-interactive \
--ignore-missing-imports \
--follow-imports=silent \
--show-column-numbers ${14} $1
exit_code=$?
if [ "$exit_code" = "0" ]; then
echo "mypy ok"
else
echo "mypy error"
fi
fi
if [ "$7" = true ] ; then
echo Running: isort ${15} $1 -c --diff
isort ${15} $1 -c --diff
exit_code=$?
if [ "$exit_code" = "0" ]; then
echo "isort ok"
else
echo "isort error"
fi
fi
if [ "$8" = true ] ; then
echo Running: vulture ${16} $1
vulture ${16} $1
exit_code=$?
if [ "$exit_code" = "0" ]; then
echo "vulture ok"
else
echo "vulture error"
fi
fi
if [ "$9" = true ] ; then
echo Running: pydocstyle ${17} $1
pydocstyle ${17} $1
exit_code=$?
if [ "$exit_code" = "0" ]; then
echo "pycodestyle ok"
else
echo "pycodestyle error"
fi
fi