File tree 1 file changed +13
-2
lines changed
1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change 1
1
name : Tests
2
2
3
- on : [ push ]
3
+ on :
4
+ push :
5
+ workflow_dispatch :
4
6
5
7
jobs :
6
8
tests :
7
9
runs-on : ubuntu-latest
8
10
strategy :
9
11
matrix :
10
- java : [ 8, 11 ]
12
+ java :
13
+ - 17
11
14
12
15
steps :
13
16
- uses : actions/checkout@v2
21
24
path : ~/.m2
22
25
key : ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
23
26
restore-keys : ${{ runner.os }}-m2
27
+ - name : Setup Docker
28
+ run : sudo apt-get -qq -y install conntrack socat ; nohup socat TCP-LISTEN:2375,reuseaddr,fork UNIX-CONNECT:/var/run/docker.sock &
29
+ - name : Pull Image
30
+ run : docker pull openanalytics/shinyproxy-integration-test-app
24
31
- name : Build with Maven
25
32
run : mvn -U clean install -DskipTests
26
33
- name : Run Tests
31
38
32
39
steps :
33
40
- uses : actions/checkout@v2
41
+ - name : Set up JDK
42
+ uses : actions/setup-java@v1
43
+ with :
44
+ java-version : 17
34
45
- name : Run Dependency Check
35
46
run : mvn -Powasp-dependency-check verify -DskipTests
36
47
- name : Archive code coverage results
You can’t perform that action at this time.
0 commit comments