8000
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 8635b1c commit a00ea43Copy full SHA for a00ea43
.github/workflows/test-graalpy.yml
@@ -92,6 +92,7 @@ jobs:
92
- uses: actions/checkout@v3
93
- name: Setup GraalPy and check latest
94
uses: ./
95
+ id: graalpy
96
with:
97
python-version: 'graalpy-23.x'
98
check-latest: true
@@ -109,8 +110,7 @@ jobs:
109
110
111
- name: Assert expected binaries (or symlinks) are present
112
run: |
- EXECUTABLE="graalpy-23.0"
113
- EXECUTABLE=${EXECUTABLE/-/} # remove the first '-' in "graalpy-X.Y" -> "graalpyX.Y" to match executable name
114
- EXECUTABLE=${EXECUTABLE%%-*} # remove any -* suffixe
+ EXECUTABLE='${{ steps.graalpy.outputs.python-version }}'
+ EXECUTABLE="${EXECUTABLE%.*}"
115
${EXECUTABLE} --version
116
shell: bash
0 commit comments