-
Notifications
You must be signed in to change notification settings - Fork 106
66 lines (66 loc) · 1.77 KB
/
main.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
name: main
on:
pull_request:
push:
env:
GOFUMPT_VERSION: 0.6.0
GOTOOLCHAIN: local
GOLANGCI_LINT_VERSION: 1.59.1
jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32
with:
cache: true
go-version-file: go.mod
- name: build
run: go build ./...
- name: test
run: go test -race -tags=docker ./...
- name: Check formatting
run: |
make format
git diff --exit-code
- name: Check generate
run: |
make generate
git diff --exit-code
darwin:
runs-on: macos-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32
with:
cache: true
go-version-file: go.mod
- name: build
run: go build ./...
- name: test
run: go test -race ./...
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32
with:
cache: true
go-version-file: go.mod
- name: build
run: go build ./...
- name: test
run: go test -race ./...
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32
with:
cache: true
go-version-file: go.mod
- uses: golangci/golangci-lint-action@aaa42aa0628b4ae2578232a66b541047968fac86
with:
version: v${{ env.GOLANGCI_LINT_VERSION }}
- name: format
run: make format