Bump selenium.version from 4.24.0 to 4.25.0 #1717
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
env: | |
DISPLAY: :99 | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, windows-latest, macos-13 ] | |
java: [ 17 ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout GitHub repo | |
uses: actions/checkout@v4 | |
- name: Set up Java | |
uses: actions/setup-java@v4.3.0 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
cache: 'maven' | |
- name: Start Xvfb | |
if: matrix.os == 'ubuntu-latest' | |
run: Xvfb $DISPLAY & | |
- name: Run tests on Linux | |
if: matrix.os == 'ubuntu-latest' | |
uses: nick-fields/retry@v3.0.0 | |
with: | |
timeout_minutes: 30 | |
max_attempts: 3 | |
command: mvn -B test -Dtest=!Record* | |
- name: Run tests on Mac | |
if: matrix.os == 'macos-13' | |
uses: nick-fields/retry@v3.0.0 | |
with: | |
timeout_minutes: 30 | |
max_attempts: 3 | |
command: mvn -B test -Dtest=!Docker*,!Record* | |
- name: Run tests on Windows | |
if: matrix.os == 'windows-latest' | |
uses: nick-fields/retry@v3.0.0 | |
with: | |
timeout_minutes: 30 | |
max_attempts: 3 | |
command: mvn -B test -Dtest=!Docker* | |
- name: Upload analysis to SonarCloud | |
if: success() && matrix.os == 'ubuntu-latest' && matrix.java == '17' && !contains(github.ref, 'pull') | |
run: > | |
mvn -B sonar:sonar | |
-Dsonar.host.url=https://sonarcloud.io | |
-Dsonar.organization=bonigarcia-github | |
-Dsonar.projectKey=io.github.bonigarcia:webdrivermanager | |
- name: Upload coverage to Codecov | |
if: success() && matrix.os == 'ubuntu-latest' && matrix.java == '17' && !contains(github.ref, 'pull') | |
uses: codecov/codecov-action@v4.5.0 | |
- name: Store recordings (only available in Windows) | |
if: always() && matrix.os == 'windows-latest' | |
uses: actions/upload-artifact@v4.4.0 | |
with: | |
name: webm-files | |
path: | | |
C:\Users\runneradmin\Downloads\*.webm |