Skip to content

Commit 6b5ab43

Browse files
committed
show java version
1 parent a93a485 commit 6b5ab43

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/integration-tests-h2.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,9 @@ jobs:
7474
distribution: 'adopt' # https://github.com/actions/setup-java#supported-distributions
7575
java-version: ${{ matrix.java-version }} # https://github.com/actions/setup-java#supported-version-syntax
7676

77+
- name: Show java version before
78+
run: java -version
79+
7780
- name: Install Chrome
7881
uses: browser-actions/setup-chrome@v2.1.1 # https://github.com/browser-actions/setup-chrome
7982
id: setup-chrome
@@ -82,6 +85,11 @@ jobs:
8285
install-dependencies: false # Default: false
8386
install-chromedriver: false # Default: false
8487

88+
- name: Show java version after
89+
run: |
90+
java -version
91+
echo "$PATH"
92+
8593
- name: Install Robot Framework
8694
run: pip install -r requirements.txt
8795

@@ -100,7 +108,6 @@ jobs:
100108
# See: https://github.com/browser-actions/setup-chrome/issues/619
101109
- name: Override system Chrome
102110
run: |
103-
echo "$PATH"
104111
set -x
105112
which chrome
106113
which google-chrome

0 commit comments

Comments
 (0)