Skip to content

Commit

Permalink
add gitpod workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Graham committed Jan 5, 2024
1 parent bc13cc2 commit 4120177
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/gitpod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven

name: Gitpod Tests Tests

on:
push:
branches: [ main ]
pull_request:

jobs:
# appium
selenium:
runs-on: ubuntu-latest
container:
# !!!IMPORTANT!!! THIS MUST ALWAYS MATCH WHAT IS IN GITPOD.YML; SAUCE LABDS CUSTOMERS RELY ON THIS!!!!:
image: maven:3.6.3-jdk-8
steps:
- uses: actions/checkout@v2
- name: Run tests
working-directory: ./gitpod
env:
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
BUILD: 'selenium-build-whatever'
BROWSER_NAME: chrome
run: mvn test -Dtest=SeleniumTest

0 comments on commit 4120177

Please sign in to comment.