-
Notifications
You must be signed in to change notification settings - Fork 711
46 lines (35 loc) · 1.05 KB
/
uiTest.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
38
39
40
41
42
43
44
45
46
name: Java Ui Test
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Set up repository
uses: actions/checkout@main
- name: Set up repository
uses: actions/checkout@main
with:
ref: master
- name: Merge to master
run: git checkout --progress --force ${{ github.sha }}
- name: Validate Gradle Wrapper
uses: gradle/actions/wrapper-validation@v3
- name: Setup JDK 17
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'
java-package: jdk+fx
- name: Build and check with Gradle
run: ./gradlew check coverage
- name: Run unit tests
run: ./gradlew test
- name: Run UI Unit tests on Windows
if: runner.os == 'Windows'
run: ./gradlew uiTest
- name: Run UI Unit tests on MacOS
if: runner.os == 'MacOS'
run: ./gradlew uiTest