Bump org.assertj:assertj-core from 3.25.3 to 3.26.3 #135
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: Selenium Java CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: 11 | |
- name: Install Google Chrome | |
run: | | |
chmod +x ./script/install_chrome.sh | |
./script/install_chrome.sh | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Run Smoke Tests in Chrome | |
run: ./gradlew test --info -Dgroups=smoke | |
- name: Run Regression Tests in Chrome | |
run: ./gradlew test --info -Dgroups=regression | |