File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 23
23
runs-on : ${{ matrix.os }}
24
24
strategy :
25
25
matrix :
26
- os : [ubuntu-latest, macOS-latest, windows-latest ]
26
+ os : [ubuntu-latest]
27
27
java : [8, 11, 15, 16-ea]
28
28
fail-fast : false
29
29
max-parallel : 4
Original file line number Diff line number Diff line change 32
32
with :
33
33
java-version : 8
34
34
- name : Report Coverage to Coveralls
35
- run : ./mvnw test jacoco:report coveralls:report -q -Dlicense.skip=true
35
+ run : ./mvnw test jacoco:report coveralls:report -q -Dlicense.skip=true -DrepoToken=$GITHUB_TOKEN
36
+ env :
37
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 37
37
- name : Analyze with SonarCloud
38
38
run : ./mvnw verify jacoco:report sonar:sonar -B -Dsonar.projectKey=mybatis_mybatis-dynamic-sql -Dsonar.organization=mybatis -Dsonar.host.url=https://sonarcloud.io -Dsonar.login=$SONAR_TOKEN -Dlicense.skip=true
39
39
env :
40
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
40
41
SONAR_TOKEN : ${{ secrets.SONAR_TOKEN }}
You can’t perform that action at this time.
0 commit comments