We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 760a88e commit 7ab1d9dCopy full SHA for 7ab1d9d
1 file changed
.github/workflows/ci_testing.yml
@@ -55,12 +55,12 @@ jobs:
55
run: |
56
echo "PWD - $PWD"
57
cat ${PWD}/.tool-versions
58
-
59
- - name: DEBUG - check JAVA_HOME
60
- run: echo "JAVA_HOME - $JAVA_HOME"
61
62
- name: Run pytest and behave tests
63
- run: make all-tests
+ run: |
+ export JAVA_HOME=$(asdf where java)
+ echo "JAVA_HOME - $JAVA_HOME"
+ make all-tests
64
65
# - name: Upload Coverage Report
66
# uses: actions/upload-artifact@v4
0 commit comments