-
Notifications
You must be signed in to change notification settings - Fork 3
43 lines (43 loc) · 1.05 KB
/
golangci-lint.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
name: golangci-lint
on:
push:
branches:
- main
pull_request:
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: install golang
uses: actions/setup-go@v5
with:
go-version: 1.20.x
- name: golangci-lint
uses: golangci/[email protected]
with:
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
version: v1.52.2
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: install golang
uses: actions/setup-go@v5
with:
go-version: 1.20.x
- name: test
run: "make test"
checkformat:
name: checkformat
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: install golang
uses: actions/setup-go@v5
with:
go-version: 1.20.x
- name: checkformat
run: "make checkformat"