-
Notifications
You must be signed in to change notification settings - Fork 4
55 lines (53 loc) · 1.51 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
name: Go
on: [push]
jobs:
test:
strategy:
matrix:
go-version: [1.21.x]
platform: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Environment information
run: |
uname -a
go version
go env
- name: Vet
if: matrix.platform == 'ubuntu-latest'
run: go vet -v ./...
- name: Lint
if: matrix.platform == 'ubuntu-latest'
run: |
export PATH=$PATH:$(go env GOPATH)/bin
go install golang.org/x/lint/golint@latest
golint -set_exit_status ./...
- name: staticcheck.io
if: matrix.platform == 'ubuntu-latest'
uses: dominikh/[email protected]
with:
install-go: false
- name: gofumpt formatting
if: matrix.platform == 'ubuntu-latest'
run: |
export PATH=$PATH:$(go env GOPATH)/bin
go install mvdan.cc/gofumpt@latest
gofumpt -d .
[ -z "$(gofumpt -l .)" ]
- name: Test with -race
run: go test -vet=off -race -count=1 ./...
- name: Test with coverage report
run: |
go test -vet=off -count=1 ./... -coverprofile cover.out
go tool cover -html cover.out -o cover.html
- name: Archive code coverage report
uses: actions/upload-artifact@v3
with:
name: code-coverage-report
path: cover.html