Skip to content

Commit e711de2

Browse files
authored
fix(ci) Update python-testing
1 parent f04b779 commit e711de2

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/python-testing.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,12 @@ jobs:
2020
steps:
2121
- name: Set matrix
2222
id: set-matrix
23+
env:
24+
VERSIONS: ${{ inputs.versions }}
2325
run: |
24-
versions="${{ inputs.versions }}"
25-
echo "Version Input :: $versions"
26-
matrix=$(echo "$versions" | tr "," "\n" | awk '{print "\""$1"\""}' | paste -sd "," -)
26+
set -e
27+
echo "Version Input :: $VERSIONS"
28+
matrix=$(echo "$VERSIONS" | tr "," "\n" | awk '{print "\""$1"\""}' | paste -sd "," -)
2729
echo "matrix :: [$matrix]"
2830
echo "matrix=[$matrix]" >> "$GITHUB_OUTPUT"
2931

0 commit comments

Comments
 (0)