-
Notifications
You must be signed in to change notification settings - Fork 122
37 lines (34 loc) · 945 Bytes
/
testng.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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: TestNg Tests
on:
schedule:
- cron: '50 22 * * *'
workflow_dispatch:
push:
branches: [ main ]
paths:
- '**/selenium-testng-examples/**'
- 'pom.*'
pull_request:
paths:
- '**/selenium-testng-examples/**'
- 'pom.*'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
steps:
- uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v4
with:
java-version: 11
distribution: "temurin"
- name: Run testng tests
env:
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
run: mvn test -pl selenium-testng-examples