Skip to content

Commit 4120177

Browse files
author
Daniel Graham
committed
add gitpod workflow
1 parent bc13cc2 commit 4120177

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/gitpod.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# This workflow will build a Java project with Maven
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
3+
4+
name: Gitpod Tests Tests
5+
6+
on:
7+
push:
8+
branches: [ main ]
9+
pull_request:
10+
11+
jobs:
12+
# appium
13+
selenium:
14+
runs-on: ubuntu-latest
15+
container:
16+
# !!!IMPORTANT!!! THIS MUST ALWAYS MATCH WHAT IS IN GITPOD.YML; SAUCE LABDS CUSTOMERS RELY ON THIS!!!!:
17+
image: maven:3.6.3-jdk-8
18+
steps:
19+
- uses: actions/checkout@v2
20+
- name: Run tests
21+
working-directory: ./gitpod
22+
env:
23+
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
24+
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
25+
BUILD: 'selenium-build-whatever'
26+
BROWSER_NAME: chrome
27+
run: mvn test -Dtest=SeleniumTest

0 commit comments

Comments
 (0)