-
-
Notifications
You must be signed in to change notification settings - Fork 128
50 lines (38 loc) · 881 Bytes
/
build.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
name: build
permissions: {}
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
run:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 7
strategy:
fail-fast: true
matrix:
go: ['1.23.1']
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
check-latest: true
- name: Go Format
run: gofmt -s -w . && git diff --exit-code
- name: Lint
run: make lint
- name: Go Vet
run: go vet ./...
- name: Go Tidy
run: go mod tidy && git diff --exit-code
- name: Go Mod
run: go mod download
- name: Go Mod Verify
run: go mod verify
- name: Go Build
run: go build -o /dev/null ./...