11 lines
223 B
YAML
11 lines
223 B
YAML
|
steps:
|
||
|
lint:
|
||
|
image: golang:1.22
|
||
|
commands:
|
||
|
- go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
|
||
|
- golangci-lint run
|
||
|
test:
|
||
|
image: golang:1.22
|
||
|
commands:
|
||
|
- go test ./...
|