-
Notifications
You must be signed in to change notification settings - Fork 14
39 lines (37 loc) · 1.14 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
name: SonarCloud
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
permissions:
contents: read
pull-requests: read
jobs:
sonarcloud:
name: SonarCloud
runs-on: ubuntu-latest
if: ${{ !github.event.pull_request.head.repo.fork }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
submodules: recursive
- uses: actions/setup-go@v5
with:
go-version: '^1.19'
- name: Install dependencies
run: go install
working-directory: ${{ env.relativePath }}
- name: Build SDK project
run: go build
working-directory: ${{ env.relativePath }}
- name: Run unit tests
run: go test -coverprofile cover.out -coverpkg=./... ./...
working-directory: ${{ env.relativePath }}
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}