Update selenium.version to v4.33.0 #135
This file contains hidden or 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: Appium Examples | |
on: | |
schedule: | |
- cron: '35 20 * * *' | |
workflow_dispatch: | |
push: | |
branches: [ main ] | |
paths: | |
- '**/appium/**' | |
pull_request: | |
paths: | |
- '**/appium/**' | |
env: | |
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }} | |
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
cloud: [ RDC, VDC ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 11 | |
distribution: "temurin" | |
- name: Android Native App ${{ matrix.cloud }} | |
working-directory: ./appium/android-app | |
run: mvn test -Dsauce.cloud=${{ matrix.cloud }} |