-
-
Notifications
You must be signed in to change notification settings - Fork 29
47 lines (38 loc) · 927 Bytes
/
verify.yml
File metadata and controls
47 lines (38 loc) · 927 Bytes
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
47
# test
name: Test package
on:
push:
branches:
- '*'
tags-ignore:
- '*'
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v2
with:
submodules: recursive
- name: List directory contents
run: pwd; ls -la
- name: start xvfb
run:
Xvfb :0 &
- name: initialize the X11 DISPLAY variable
run:
export DISPLAY=:0
- name: After checkout, list directory contnts
run: pwd; ls -la
- name: Build with Gradle
run: bash makeJar.sh
- name: Set Java
uses: actions/setup-java@v1
with:
java-version: 25
jdkFile: zulu25.32.21-ca-fx-jdk25.0.2-linux_x64.tar.gz
- name: Run Unit Tests
run: xvfb-run -s '-screen 0 1024x768x24' ./gradlew test