Skip to content

Commit 9db6c93

Browse files
authored
Merge pull request #8 from DevSecOpsSamples/develop
Develop
2 parents 47ade88 + d16ea1a commit 9db6c93

File tree

25 files changed

+62
-37
lines changed

25 files changed

+62
-37
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,26 @@ jobs:
1818
uses: actions/setup-java@v1
1919
with:
2020
java-version: 11
21+
2122
- name: Cache SonarCloud packages
2223
uses: actions/cache@v1
2324
with:
2425
path: ~/.sonar/cache
2526
key: ${{ runner.os }}-sonar
2627
restore-keys: ${{ runner.os }}-sonar
28+
2729
- name: Cache Gradle packages
2830
uses: actions/cache@v1
2931
with:
3032
path: ~/.gradle/caches
3133
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
3234
restore-keys: ${{ runner.os }}-gradle
33-
- name: Build and analyze
35+
36+
- name: Build and Test
37+
run: ./gradlew build test
38+
39+
- name: Sonarqube
3440
env:
3541
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
3642
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
37-
run: ./gradlew build sonarqube --info
43+
run: ./gradlew sonarqube --info
-100 KB
Binary file not shown.
-17 Bytes
Binary file not shown.
-1 Bytes
Binary file not shown.
-19 KB
Binary file not shown.
-17 Bytes
Binary file not shown.

.gradle/6.8.3/gc.properties

Whitespace-only changes.
-4.33 MB
Binary file not shown.
-17 Bytes
Binary file not shown.
-24.9 KB
Binary file not shown.

0 commit comments

Comments
 (0)