-
Notifications
You must be signed in to change notification settings - Fork 7
89 lines (84 loc) · 2.54 KB
/
check.yaml
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
name: check
on:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v3
- name: setup go build environment
uses: actions/setup-go@v3
with:
go-version-file: 'go.mod'
check-latest: true
- name: linter
run: make mod deps linter GOPATH=$(go env GOPATH)
test:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v3
- name: setup go build environment
uses: actions/setup-go@v3
with:
go-version-file: 'go.mod'
check-latest: true
- name: dependency cache
uses: actions/cache@v3
with:
path: $(go env GOPATH)/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ runner.os }}-go-
- name: unit tests
run: make mod deps test GOPATH=$(go env GOPATH)
- name: coverage report
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: target/report/coverage.out
- name: hash go files
id: go_hash
run: echo "value=${{ hashFiles('**/*.go','!vendor/**','!examples/**') }}" >>"$GITHUB_OUTPUT"
- name: cache coverage
id: cover_cache
uses: actions/cache@v3
with:
path: target/report/coverage.out
key: go_cover_profile_${{ steps.go_hash.outputs.value }}
sonar:
if: github.repository == 'Vonage/gosrvlib'
runs-on: ubuntu-latest
needs: test
continue-on-error: true
steps:
- name: checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: hash go files
id: go_hash
run: echo "value=${{ hashFiles('**/*.go','!vendor/**','!examples/**') }}" >>"$GITHUB_OUTPUT"
- name: Get coverage from cache
id: cover_cache
uses: actions/cache@v3
with:
path: target/report/coverage.out
key: go_cover_profile_${{ steps.go_hash.outputs.value }}
- name: Read version
id: read_version
run: echo "value=$(cat VERSION)" >>"$GITHUB_OUTPUT"
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
with:
args: >
-Dsonar.projectVersion=${{ steps.read_version.outputs.value }}