-
Notifications
You must be signed in to change notification settings - Fork 8
58 lines (49 loc) · 1.37 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
58
name: SonarCloud analysis
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize, reopened]
schedule:
- cron: '0 1 * * 1'
permissions:
contents: read
jobs:
go-versions:
name: "lookup go versions"
runs-on: ubuntu-latest
outputs:
go-mod-version: ${{ steps.versions.outputs.go-mod-version }}
steps:
- uses: actions/checkout@v4
- uses: arnested/go-version-action@v1
id: versions
analysis:
name: "tests and analysis"
needs: go-versions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: "setup go"
uses: actions/setup-go@v5
with:
go-version: ${{ fromJSON(needs.go-versions.outputs.go-mod-version) }}
- name: "install dependencies"
run: go get .
- name: "golangci-lint"
uses: golangci/golangci-lint-action@v5
with:
version: v1.54
only-new-issues: true
args: --config=.golangci.yml --out-format checkstyle:golangcli-lint-report.xml
- name: "test with go"
run: make test
- name: "build ncm-issuer"
run: make build
- name: "SonarCloud scan"
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}