Skip to content

Commit af0e4b5

Browse files
authored
Merge branch 'trunk' into petesong/add-practice-example
2 parents 6120c3a + 3347521 commit af0e4b5

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/ruby-examples.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
run: |
4343
sudo rm -rf $CHROMEWEBDRIVER $EDGEWEBDRIVER $GECKOWEBDRIVER
4444
- name: Setup Fluxbox and Xvfb
45-
if: inputs.os == 'ubuntu'
45+
if: matrix.os == 'ubuntu'
4646
run: |
4747
sudo apt-get -y install fluxbox libxss1 libappindicator3-1 libindicator7
4848
Xvfb :99 &
@@ -97,7 +97,7 @@ jobs:
9797
cd examples/ruby
9898
bundle exec rspec
9999
new_command_on_retry: |
100-
cd examples/ruby; $env:DEBUG="true"; bundle exec rspec --only-failures
100+
cd examples/ruby; $env:DEBUG="true"; bundle exec rspec --only-failures --backtrace
101101
- name: Run tests on ${{ matrix.os }}
102102
if: matrix.os != 'windows'
103103
uses: nick-invision/[email protected]
@@ -109,4 +109,4 @@ jobs:
109109
bundle exec rspec
110110
new_command_on_retry: |
111111
cd examples/ruby
112-
DEBUG=true bundle exec rspec --only-failures
112+
DEBUG=true bundle exec rspec --only-failures --backtrace

examples/kotlin/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,16 @@
99
<version>1.0.0</version>
1010

1111
<properties>
12-
<kotlin.version>2.1.0</kotlin.version>
12+
<kotlin.version>2.1.20</kotlin.version>
1313

1414
<slf4j.version>2.0.17</slf4j.version>
1515
<logback.version>1.5.18</logback.version>
1616

1717
<junit5.version>5.12.1</junit5.version>
18-
<wdm.version>5.2.3</wdm.version>
1918

2019
<maven-surefire-plugin.version>3.5.3</maven-surefire-plugin.version>
2120

22-
<java.version>1.8</java.version>
21+
<java.version>11</java.version>
2322
<selenium.version>4.31.0</selenium.version>
2423

2524
<maven.compiler.target>${java.version}</maven.compiler.target>

0 commit comments

Comments
 (0)