File tree Expand file tree Collapse file tree 4 files changed +3
-31
lines changed
src/test/java/com/amadeus Expand file tree Collapse file tree 4 files changed +3
-31
lines changed Original file line number Diff line number Diff line change 38
38
run : |
39
39
curl -Ls https://sh.jbang.dev | bash -s - app setup
40
40
~/.jbang/bin/jbang .github/VersionLibraryVerifier.java amadeus-java/
41
-
42
- sonarbuild :
43
- name : sonarcloud Build
44
- runs-on : ubuntu-latest
45
- steps :
46
- - uses : actions/checkout@v2
47
- with :
48
- fetch-depth : 0 # Shallow clones should be disabled for a better relevancy of analysis
49
- - name : Set up JDK 11
50
- uses : actions/setup-java@v1
51
- with :
52
- java-version : 11
53
- - name : Cache SonarCloud packages
54
- uses : actions/cache@v1
55
- with :
56
- path : ~/.sonar/cache
57
- key : ${{ runner.os }}-sonar
58
- restore-keys : ${{ runner.os }}-sonar
59
- - name : Cache Gradle packages
60
- uses : actions/cache@v1
61
- with :
62
- path : ~/.gradle/caches
63
- key : ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
64
- restore-keys : ${{ runner.os }}-gradle
65
- - name : Build and analyze
66
- env :
67
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
68
- SONAR_TOKEN : ${{ secrets.SONAR_TOKEN }}
69
- run : ./gradlew build sonarqube --info
Original file line number Diff line number Diff line change @@ -475,3 +475,4 @@ This library is released under the [MIT License](LICENSE).
475
475
476
476
You can find us on [ StackOverflow] ( https://stackoverflow.com/questions/tagged/amadeus ) or join our developer community on
477
477
[ Discord] ( https://discord.gg/cVrFBqx ) .
478
+
Original file line number Diff line number Diff line change @@ -88,4 +88,4 @@ sonarqube {
88
88
property " sonar.organization" , " amadeus4dev"
89
89
property " sonar.host.url" , " https://sonarcloud.io"
90
90
}
91
- }
91
+ }
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ public void setup() {
52
52
.setHost ("localhost" )
53
53
.setPort (8080 )
54
54
.setSsl (false )
55
- .setLogLevel ("debug" )
55
+ // .setLogLevel("debug")
56
56
.build ();
57
57
}
58
58
You can’t perform that action at this time.
0 commit comments