-
Notifications
You must be signed in to change notification settings - Fork 0
84 lines (71 loc) · 2.06 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
name: Go
on:
push:
branches:
- master
- release/**
pull_request:
env:
GO111MODULE: on
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- name: Setup go
uses: actions/setup-go@v4
with: { go-version: '1.20.x' }
- name: Check out code
uses: actions/checkout@v3
with: { fetch-depth: 0 }
- name: Cache go mod
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-
- name: golangci-lint
with: { version: latest }
uses: golangci/golangci-lint-action@v3
- name: dump dependencies (for nancy)
run: go list -json -m all > go.list
- name: Nancy (deps vulnerabilities)
uses: sonatype-nexus-community/nancy-github-action@main
build:
name: Build
runs-on: ubuntu-latest
needs: lint
strategy: { matrix: { go: [ '1.19.x', '1.20.x' ] } }
steps:
- name: Setup go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Check out code
uses: actions/checkout@v3
with: { fetch-depth: 0 }
- name: Cache go mod
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-
- name: Tests
run: go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
if: matrix.go == '1.20.x'
with:
token: ${{ secrets.CODECOV_TOKEN }} #required
file: ./coverage.txt
fail_ci_if_error: true #optional (default = false)
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
if: startsWith(github.ref, 'refs/tags/')
with:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GO_RELEASER_TOKEN }}