Skip to content

Commit

Permalink
Update AutomatedTest.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Mukesh-50 authored Jul 8, 2024
1 parent 7c2b433 commit 27610e0
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/AutomatedTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,33 @@ jobs:

- name: Running Test On Linux
run: mvn clean test -DBrowser=Chrome

SeleniumTestOnWindows:
runs-on: windows-latest

steps:
- uses: actions/checkout@v4
- name: Setting up JDK 11 For Test Execution
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'

- name: Running Test On Windows
run: mvn clean test -DBrowser=Chrome

SeleniumTestOnMAC:
runs-on: macos-latest

steps:
- uses: actions/checkout@v4
- name: Setting up JDK 11 For Test Execution
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'

- name: Running Test On MACOS
run: mvn clean test -DBrowser=Chrome


0 comments on commit 27610e0

Please sign in to comment.