File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change 18
18
# We must fetch at least the immediate parents so that if this is
19
19
# a pull request then we can checkout the head.
20
20
fetch-depth : 2
21
+ - uses : actions/setup-java@v1
22
+ with :
23
+ java-version : ' 11'
21
24
22
25
# If this run was triggered by a pull request event, then checkout
23
26
# the head of the pull request instead of the merge commit.
@@ -27,11 +30,12 @@ jobs:
27
30
# Initializes the CodeQL tools for scanning.
28
31
- name : Initialize CodeQL
29
32
uses : github/codeql-action/init@v1
33
+ with :
34
+ languages : java
30
35
31
- # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
32
- # If this step fails, then you should remove it and run the build manually (see below)
33
- - name : Autobuild
34
- uses : github/codeql-action/autobuild@v1
36
+ - name : Build project
37
+ run : |
38
+ ./gradlew jar
35
39
36
40
- name : Perform CodeQL Analysis
37
41
uses : github/codeql-action/analyze@v1
You can’t perform that action at this time.
0 commit comments