Run Selenide tips #318
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: Run Selenide tips | |
on: | |
schedule: | |
- cron: '40 21 * * *' | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- '**/code/selenide/**' | |
push: | |
branches: | |
- main | |
paths: | |
- '**/code/selenide/**' | |
env: | |
DISPLAY: :99 | |
jobs: | |
test_examples: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest, windows-latest, macos-latest ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout GitHub repo | |
uses: actions/checkout@v4 | |
- name: Remove driver directories Windows | |
if: matrix.os == 'windows-latest' | |
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-latest' | |
run: | | |
sudo rm -rf $CHROMEWEBDRIVER $EDGEWEBDRIVER $GECKOWEBDRIVER | |
- name: Start Xvfb | |
if: matrix.os == 'ubuntu-latest' | |
run: Xvfb :99 & | |
- name: Set up Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
- name: Set up Maven | |
uses: stCarolas/setup-maven@v5 | |
with: | |
maven-version: 3.9.6 | |
- name: Run tests on Linux and macOS | |
if: matrix.os != 'windows-latest' | |
uses: nick-invision/[email protected] | |
with: | |
timeout_minutes: 20 | |
max_attempts: 3 | |
command: | | |
# Find directories | |
directories=$(find . -type d -path '*/code/selenide' 2>/dev/null) | |
# Loop over directories and execute mvn test | |
for dir in $directories | |
do | |
echo "Running tests in $dir" | |
cd $dir | |
mvn test | |
cd - | |
done | |
- name: Run tests on Windows | |
if: matrix.os == 'windows-latest' | |
uses: nick-invision/[email protected] | |
with: | |
timeout_minutes: 20 | |
max_attempts: 3 | |
command: | | |
# PowerShell script to find directories and run mvn test | |
$directories = Get-ChildItem -Path . -Recurse -Filter 'selenide' | Where-Object { $_.PSIsContainer -and $_.FullName -like '*\code\selenide*' -and $_.FullName -notlike '*\code\selenide\*' } | |
foreach ($dir in $directories) | |
{ | |
Write-Host "Running tests in $($dir.FullName)" | |
Set-Location -Path $dir.FullName | |
mvn test | |
Set-Location -Path $PSScriptRoot | |
} |