-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (47 loc) · 1.61 KB
/
sonarcloud.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: SonarCloud Analysis
#on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build-and-analyze:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Setup .NET 6
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x' # Make sure this matches your project's .NET version
- name: Setup Java 17 # SonarScanner requires Java
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'adopt'
- name: Install SonarScanner for .NET
run: dotnet tool install --global dotnet-sonarscanner
- name: Add SonarScanner to PATH
run: echo "$HOME/.dotnet/tools" >> $GITHUB_PATH
- name: Begin SonarCloud Analysis
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Provided by GitHub for the action
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} # SonarCloud token for authentication
run: |
export PATH="$HOME/.dotnet/tools:$PATH"
dotnet sonarscanner begin \
/k:"theslash84_AzureFunctionClamavKubernetes" \
/o:"theslash84" \
/d:sonar.login="${{ secrets.SONAR_TOKEN }}" \
/d:sonar.host.url="https://sonarcloud.io"
- name: Build Project
run: dotnet build
- name: End SonarCloud Analysis
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: |
export PATH="$HOME/.dotnet/tools:$PATH"
dotnet sonarscanner end /d:sonar.login="${{ secrets.SONAR_TOKEN }}"