Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove Rename Refactor #159

Closed
wants to merge 14 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 0 additions & 29 deletions .github/workflows/best-practice.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/junit4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: axel-op/googlejavaformat-action@v3
with:
args: "--replace"
files: "selenium-junit4-examples/**/*.java"
files: "selenium-junit4/**/*.java"
skip-commit: true
- name: Print diffs
run: git --no-pager diff --exit-code
Expand All @@ -30,7 +30,7 @@ jobs:
with:
java-version: 11
- name: Run JUnit 4 Tests
working-directory: ./selenium-junit4-examples
working-directory: ./selenium-junit4
env:
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
Expand Down
37 changes: 37 additions & 0 deletions .github/workflows/junit5.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# This workflow will build a Java project with Maven
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven

name: JUnit 4 Tests

on:
push:
branches: [ main ]
pull_request:

jobs:
formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: axel-op/googlejavaformat-action@v3
with:
args: "--replace"
files: "selenium-junit5/**/*.java"
skip-commit: true
- name: Print diffs
run: git --no-pager diff --exit-code

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Java
uses: actions/setup-java@v1
with:
java-version: 11
- name: Run JUnit 5 Tests
working-directory: ./selenium-junit5
env:
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
run: mvn test
29 changes: 0 additions & 29 deletions .github/workflows/mac-windows.yml

This file was deleted.

29 changes: 0 additions & 29 deletions .github/workflows/real-devices.yml

This file was deleted.

27 changes: 0 additions & 27 deletions .github/workflows/selenium-cucumber-examples.yml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: axel-op/googlejavaformat-action@v3
with:
args: "--replace"
files: "selenium-examples/**/*.java"
files: "selenium/**/*.java"
skip-commit: true
- name: Print diffs
run: git --no-pager diff --exit-code
Expand All @@ -30,7 +30,7 @@ jobs:
with:
java-version: 11
- name: Run JUnit 5 tests
working-directory: ./selenium-examples
working-directory: ./selenium
env:
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
Expand Down
27 changes: 0 additions & 27 deletions .github/workflows/testng.yml

This file was deleted.

10 changes: 0 additions & 10 deletions .gitpod.yml

This file was deleted.

Loading
Loading