We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54b6db3 commit 8083d18Copy full SHA for 8083d18
.github/workflows/workflows.yaml
@@ -1,13 +1,16 @@
1
name: Tests
2
3
-on: [ push ]
+on:
4
+ push:
5
+ workflow_dispatch:
6
7
jobs:
8
tests:
9
runs-on: ubuntu-latest
10
strategy:
11
matrix:
- java: [ 8, 11 ]
12
+ java:
13
+ - 17
14
15
steps:
16
- uses: actions/checkout@v2
@@ -31,6 +34,10 @@ jobs:
31
34
32
35
33
36
37
+ - name: Set up JDK
38
+ uses: actions/setup-java@v1
39
+ with:
40
+ java-version: 17
41
- name: Run Dependency Check
42
run: mvn -Powasp-dependency-check verify -DskipTests
43
- name: Archive code coverage results
0 commit comments