Skip to content

fix(deps): update dependency org.junit.jupiter:junit-jupiter-engine to v5.13.3 #1305

fix(deps): update dependency org.junit.jupiter:junit-jupiter-engine to v5.13.3

fix(deps): update dependency org.junit.jupiter:junit-jupiter-engine to v5.13.3 #1305

Workflow file for this run

name: Run Kotlin examples
on:
workflow_dispatch:
schedule:
- cron: '45 22 * * *'
pull_request:
branches:
- trunk
paths:
- 'examples/kotlin/**'
push:
branches:
- trunk
paths:
- 'examples/kotlin/**'
env:
DISPLAY: :99
GITHUB_TOKEN: ${{ secrets.SELENIUM_CI_TOKEN }}
GH_TOKEN: ${{ secrets.SELENIUM_CI_TOKEN }}
jobs:
tests:
strategy:
fail-fast: false
matrix:
os: [ ubuntu, windows, macos ]
runs-on: ${{ format('{0}-latest', matrix.os) }}
steps:
- name: Checkout GitHub repo
uses: actions/checkout@v4
- name: Remove driver directories Windows
if: matrix.os == 'windows'
run: |
rm "$env:ChromeWebDriver" -r -v
rm "$env:EdgeWebDriver" -r -v
rm "$env:GeckoWebDriver" -r -v
- name: Remove driver directories Non-Windows
if: matrix.os != 'windows'
run: |
sudo rm -rf $CHROMEWEBDRIVER $EDGEWEBDRIVER $GECKOWEBDRIVER
- name: Start Xvfb
if: matrix.os == 'ubuntu'
run: Xvfb :99 &
- name: Set up Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 11
- name: Run tests
uses: nick-invision/retry@v3.0.2
with:
timeout_minutes: 20
max_attempts: 3
command: |
cd examples/kotlin
mvn -B test