Skip to content

Commit

Permalink
More cleanup for github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mmerrell committed Jan 29, 2025
1 parent c60f020 commit eb5918d
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 23 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/best-practice.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up Java
with:
java-version: 11
distribution: "temurin"
uses: actions/setup-java@v4
with:
java-version: 11
distribution: "temurin"
- name: Run tests
continue-on-error: true
env:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,10 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up Java
with:
java-version: 11
distribution: "temurin"
uses: actions/setup-java@v4
with:
java-version: 11
distribution: "temurin"
- name: Run tests
env:
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/playwright-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,10 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up Java
with:
java-version: 11
distribution: "temurin"
uses: actions/setup-java@v4
with:
java-version: 11
distribution: "temurin"
- name: Run JUnit 5 tests
working-directory: ./playwright-examples
env:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/real-devices.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,10 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up Java
with:
java-version: 11
distribution: "temurin"
uses: actions/setup-java@v4
with:
java-version: 11
distribution: "temurin"
- name: RDC Native App Android
run: |
cd appium/appium-app-appium-app-examples
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/selenium-cucumber-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,10 @@ jobs:
- uses: actions/checkout@v4
- name: Set up Java
with:
java-version: 11
distribution: "temurin"
uses: actions/setup-java@v4
with:
java-version: 11
distribution: "temurin"
- name: Run tests
env:
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,10 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up Java
with:
java-version: 11
distribution: "temurin"
uses: actions/setup-java@v4
with:
java-version: 11
distribution: "temurin"
- name: Run JUnit 4 Tests
working-directory: ./selenium-junit4-examples
env:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/selenium-junit5-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,10 @@ jobs:
- uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v4
with:
java-version: 11
distribution: "temurin"
uses: actions/setup-java@v4
with:
java-version: 11
distribution: "temurin"
- name: Run JUnit 5 tests
working-directory: ./selenium-junit5-examples
env:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/testng.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up Java
with:
java-version: 11
distribution: "temurin"
uses: actions/setup-java@v4
with:
java-version: 11
distribution: "temurin"
- name: Run TestNG tests
env:
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
Expand Down

0 comments on commit eb5918d

Please sign in to comment.