We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b414a0 commit a3bb5f7Copy full SHA for a3bb5f7
1 file changed
.github/workflows/master.yml
@@ -25,4 +25,8 @@ jobs:
25
with:
26
java-version: ${{ matrix.java }}
27
- name: Build and test, no integration tests
28
- run: mvn verify -pl '!biojava-integrationtest'
+ env:
29
+ SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
30
+ SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
31
+ # The following builds the project, runs the tests with coverage (no integration tests) and then executes the SonarCloud analysis
32
+ run: mvn verify -pl '!biojava-integrationtest' org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=biojava_biojava
0 commit comments