File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change 11name : Tests
22
3- on : [ push ]
3+ on :
4+ push :
5+ workflow_dispatch :
46
57jobs :
68 tests :
79 runs-on : ubuntu-latest
810 strategy :
911 matrix :
10- java : [ 8, 11 ]
12+ java :
13+ - 17
1114
1215 steps :
1316 - uses : actions/checkout@v2
2124 path : ~/.m2
2225 key : ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
2326 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 &
2429 - name : Build with Maven
2530 run : mvn -U clean install -DskipTests
2631 - name : Run Tests
3136
3237 steps :
3338 - uses : actions/checkout@v2
39+ - name : Set up JDK
40+ uses : actions/setup-java@v1
41+ with :
42+ java-version : 17
3443 - name : Run Dependency Check
3544 run : mvn -Powasp-dependency-check verify -DskipTests
3645 - name : Archive code coverage results
You can’t perform that action at this time.
0 commit comments