File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -27,10 +27,12 @@ jobs:
27
27
steps :
28
28
- name : Set matrix
29
29
id : set-matrix
30
+ env :
31
+ VERSIONS : ${{ inputs.versions }}
30
32
run : |
31
- versions="${{ inputs.versions }}"
32
- echo "Version Input :: $versions "
33
- matrix=$(echo "$versions " | tr "," "\n" | awk '{print "\""$1"\""}' | paste -sd "," -)
33
+ set -e
34
+ echo "Version Input :: $VERSIONS "
35
+ matrix=$(echo "$VERSIONS " | tr "," "\n" | awk '{print "\""$1"\""}' | paste -sd "," -)
34
36
echo "matrix :: [$matrix]"
35
37
echo "matrix=[$matrix]" >> "$GITHUB_OUTPUT"
36
38
71
73
fi
72
74
73
75
- name : Run linting
76
+ env :
77
+ TOOL : ${{ inputs.tool }}
74
78
run : |
75
79
set -e
76
- TOOL="${{ inputs.tool }}"
77
80
if [[ "$TOOL" == "ruff" ]]; then
78
81
pip install ruff
79
82
ruff check
You can’t perform that action at this time.
0 commit comments