-
Notifications
You must be signed in to change notification settings - Fork 0
86 lines (80 loc) · 2.19 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
# Copyright 2024 Shaolong Chen. All rights reserved.
# Use of this source code is governed by a MIT style
# license that can be found in the LICENSE file.
name: Go
on:
push:
branches:
- main
paths:
- '**.go'
- 'go.mod'
- '.golangci.yml'
- '.github/workflows/go.yml'
pull_request:
paths:
- '**.go'
- 'go.mod'
- '.golangci.yml'
- '.github/workflows/go.yml'
env:
GOPROXY: "https://proxy.golang.org"
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.21.x
- name: Checkout code
uses: actions/checkout@v4
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
args: --timeout=30m
- name: Check Go module tidiness
shell: bash
run: |
go mod tidy
STATUS=$(git status --porcelain go.mod go.sum)
if [ ! -z "$STATUS" ]; then
echo "Running go mod tidy modified go.mod and/or go.sum"
exit 1
fi
- name: Check code format
shell: bash
run: |
go install mvdan.cc/gofumpt@latest
go install github.com/rinchsan/gosimports/cmd/gosimports@latest
if [ $(gofumpt -extra -l . | wc -l) != 0 ]; then
echo 'Code not formated'
exit 1
fi
if [ $(gosimports -local github.com/maolonglong -l . | wc -l) != 0 ]; then
echo 'Code not formated'
exit 1
fi
test:
name: Test
strategy:
matrix:
go-version: [ 1.21.x ]
platform: [ macos-latest ]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Run tests
run: go test -shuffle=on -v -race -count=1 -coverprofile=coverage -covermode=atomic ./...
- name: Upload coverage report to Codecov
uses: codecov/codecov-action@v5
with:
file: ./coverage
flags: unittests