-
Notifications
You must be signed in to change notification settings - Fork 0
73 lines (62 loc) · 2.07 KB
/
actions.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go 1.22
uses: actions/setup-go@v3
with:
go-version: 1.22
- name: Cache Go modules
uses: actions/cache@v2
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Update dependencies
run: go mod tidy
- name: Test with Coverage
run: go test ./... -coverprofile=coverage.out -covermode=atomic
- name: Check Coverage
run: |
go tool cover -func=coverage.out -o coverage-summary.txt
COVERAGE=$(go tool cover -func=coverage.out | grep total: | awk '{print substr($3, 1, length($3)-1)}')
echo "Total test coverage: $COVERAGE%"
if (( $(echo "$COVERAGE < 60" |bc -l) )); then
echo "Test coverage is below 60%"
exit 1
fi
env:
GO111MODULE: on
- name: Install golangci-lint
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin latest
- name: Run golangci-lint
run: golangci-lint run ./...
env:
GO111MODULE: on
- name: SonarQube Scan
uses: sonarsource/[email protected]
env:
SONAR_TOKEN: ${{ secrets.SONARQUBE_TOKEN }}
SONAR_HOST_URL: ${{ vars.SONARQUBE_URL }}
with:
args: >
-Dsonar.projectKey=go-cache
-Dsonar.sources=.
-Dsonar.go.coverage.reportPaths=coverage.out
-Dsonar.exclusions=**/*_test.go,**/main.go
-Dsonar.qualitygate.wait=true
-Dsonar.qualitygate.timeout=300
-Dsonar.qualitygate.status=ERROR
-Dsonar.qualitygate.stop=true
-Dsonar.qualitygate.failIfNoQualityGate=true