Skip to content

Commit 958d46c

Browse files
authored
Fix "No code found during the build" error (#669)
1 parent a360c86 commit 958d46c

File tree

1 file changed

+1
-14
lines changed

1 file changed

+1
-14
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -24,23 +24,10 @@ jobs:
2424
with:
2525
java-version: 8
2626

27-
- name: Checkout
28-
uses: actions/checkout@v2
29-
3027
- name: Grant execute permission for gradlew
3128
run: chmod +x gradlew
3229

33-
- name: Cache Gradle
34-
uses: actions/cache@v2
35-
with:
36-
path: |
37-
~/.gradle/caches
38-
~/.gradle/wrapper
39-
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
40-
restore-keys: |
41-
${{ runner.os }}-gradle-
42-
43-
- name: Build and Install packages
30+
- name: Build
4431
run: ./gradlew assemble check
4532

4633
- name: Perform CodeQL Analysis

0 commit comments

Comments
 (0)