File tree 1 file changed +27
-0
lines changed
1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments