We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f04b779 commit e711de2Copy full SHA for e711de2
.github/workflows/python-testing.yml
@@ -20,10 +20,12 @@ jobs:
20
steps:
21
- name: Set matrix
22
id: set-matrix
23
+ env:
24
+ VERSIONS: ${{ inputs.versions }}
25
run: |
- versions="${{ inputs.versions }}"
- echo "Version Input :: $versions"
26
- matrix=$(echo "$versions" | tr "," "\n" | awk '{print "\""$1"\""}' | paste -sd "," -)
+ set -e
27
+ echo "Version Input :: $VERSIONS"
28
+ matrix=$(echo "$VERSIONS" | tr "," "\n" | awk '{print "\""$1"\""}' | paste -sd "," -)
29
echo "matrix :: [$matrix]"
30
echo "matrix=[$matrix]" >> "$GITHUB_OUTPUT"
31
0 commit comments