forked from grafadruid/go-druid
-
Notifications
You must be signed in to change notification settings - Fork 0
117 lines (96 loc) · 2.96 KB
/
go.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
name: Go
env:
BUF_TOKEN: ${{ secrets.BUF_TOKEN }}
on:
pull_request:
paths:
- ".github/workflows/go.yml"
- "**.go"
- "/revive.toml"
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Go environment
uses: actions/setup-go@v4
with:
cache: false
go-version-file: go.mod
- id: go-cache-paths
run: |
echo "go-build=$(go env GOCACHE)" >> $GITHUB_OUTPUT
echo "go-mod=$(go env GOMODCACHE)" >> $GITHUB_OUTPUT
- name: Go Build Cache
uses: actions/cache@v3
with:
path: ${{ steps.go-cache-paths.outputs.go-build }}
key: ${{ runner.os }}-gobuild-build-${{ github.sha }}
restore-keys: |
${{ runner.os }}-gobuild-build-
- name: Go Mod Cache
id: go-mod-cache
uses: actions/cache@v3
with:
path: ${{ steps.go-cache-paths.outputs.go-mod }}
key: ${{ runner.os }}-gomod-build-${{ hashFiles('**/go.sum') }}
- name: Run vet linter
id: vet
uses: magefile/mage-action@v3
with:
version: latest
args: vet
- name: Run gofmt linter
id: fmt
uses: magefile/mage-action@v3
with:
version: latest
args: fmt
check-go-mod:
name: Check go.mod tidiness
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go environment
uses: actions/setup-go@v4
with:
cache: false
go-version-file: go.mod
- id: go-cache-paths
run: |
echo "go-build=$(go env GOCACHE)" >> $GITHUB_OUTPUT
echo "go-mod=$(go env GOMODCACHE)" >> $GITHUB_OUTPUT
- name: Go Build Cache
uses: actions/cache@v3
with:
path: ${{ steps.go-cache-paths.outputs.go-build }}
key: ${{ runner.os }}-gobuild-build-${{ github.sha }}
restore-keys: |
${{ runner.os }}-gobuild-build-
- name: Go Mod Cache
id: go-mod-cache
uses: actions/cache@v3
with:
path: ${{ steps.go-cache-paths.outputs.go-mod }}
key: ${{ runner.os }}-gomod-build-${{ hashFiles('**/go.sum') }}
- run: go mod tidy
- name: Has Changes
id: has_changes
run: |
[[ -z $(git status -s go.mod) ]] && [[ -z $(git status -s go.sum) ]] \
&& echo "::set-output name=hasChanges::${{ toJSON(false) }}" \
|| echo "::set-output name=hasChanges::${{ toJSON(true) }}"
- name: Print Diff
if: ${{ fromJSON(steps.has_changes.outputs.hasChanges) }}
run: |
git diff
- name: Report and fail
if: ${{ fromJSON(steps.has_changes.outputs.hasChanges) }}
run: |
echo "::error title=go.mod is not tidy::Please tidy locally and commit."
exit 1