File tree 2 files changed +0
-22
lines changed
2 files changed +0
-22
lines changed Original file line number Diff line number Diff line change 13
13
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
14
14
jobs :
15
15
# This workflow contains a single job called "build"
16
- sonarqube-analysis :
17
- runs-on : ubuntu-latest
18
- steps :
19
- - name : Checkout repo
20
- uses : actions/checkout@v2
21
-
22
- - name : SonarQube Analysis
23
- uses : SonarSource/sonarqube-scan-action@master
24
- env :
25
- SONAR_TOKEN : ${{ secrets.SONAR_TOKEN }}
26
- SONAR_HOST_URL : ${{ secrets.SONAR_HOST_URL }}
27
16
build :
28
17
# The type of runner that the job will run on
29
18
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 7
7
- stage
8
8
9
9
jobs :
10
- sonarqube-analysis :
11
- runs-on : ubuntu-latest
12
- steps :
13
- - name : Checkout repo
14
- uses : actions/checkout@v2
15
-
16
- - name : SonarQube Analysis
17
- uses : SonarSource/sonarqube-scan-action@master
18
- env :
19
- SONAR_TOKEN : ${{ secrets.SONAR_TOKEN }}
20
- SONAR_HOST_URL : ${{ secrets.SONAR_HOST_URL }}
21
10
build :
22
11
# The type of runner that the job will run on
23
12
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments