-
Notifications
You must be signed in to change notification settings - Fork 41
64 lines (55 loc) · 1.49 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
name: Go
on:
push:
branches: [ beta ]
pull_request:
branches: [ beta ]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
arch: [amd64, 386]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: 1.21
- name: Get Go environment
id: go-env
run: |
echo "::set-output name=cache::$(go env GOCACHE)"
echo "::set-output name=modcache::$(go env GOMODCACHE)"
echo "::set-output name=lintcache::$HOME/.cache/golangci-lint"
- name: Set up cache
uses: actions/cache@v3
with:
path: |
${{ steps.go-env.outputs.cache }}
${{ steps.go-env.outputs.modcache }}
${{ steps.go-env.outputs.lintcache }}
key: lint-${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}-${{ hashFiles('**/go.mod') }}-${{ hashFiles('generic/*.go') }}
restore-keys: |
lint-${{ runner.os }}-go-
- name: Lint
env:
GOARCH: ${{ matrix.arch }}
uses: golangci/golangci-lint-action@v3
with:
version: latest
args: --timeout 30m
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.21
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...