We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 596968a + 1c9ccd9 commit ff60bebCopy full SHA for ff60beb
.github/workflows/ci.yml
@@ -21,11 +21,19 @@ jobs:
21
with:
22
go-version-file: go.mod
23
24
+ - name: Install golangci-lint
25
+ uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9
26
+ with:
27
+ version: latest
28
+
29
- name: Install dependencies
30
run: go mod download
31
32
- name: Build
- run: go build -v ./...
33
+ run: make build
34
35
- name: Test
- run: go test -v ./...
36
+ run: make test
37
38
+ - name: Lint
39
+ run: make lint
Makefile
@@ -6,9 +6,11 @@ build:
6
test:
7
go test ./...
8
9
+lint:
10
+ golangci-lint run
11
12
bench:
13
go test -bench=. -benchmem -run=^# ./...
14
15
docker:
16
docker build -t kamal-proxy .
-
0 commit comments