20 lines
416 B
YAML
20 lines
416 B
YAML
|
---
|
||
|
kind: pipeline
|
||
|
type: docker
|
||
|
name: default
|
||
|
|
||
|
steps:
|
||
|
- name: Lint
|
||
|
image: docker.io/golangci/golangci-lint:latest
|
||
|
environment:
|
||
|
GO111MODULE: "on"
|
||
|
CGO_ENABLED: "0"
|
||
|
GOMEMLIMIT: "1150MiB"
|
||
|
commands:
|
||
|
- golangci-lint run -v
|
||
|
|
||
|
- name: Test
|
||
|
image: docker.io/golang:1.20-buster
|
||
|
commands:
|
||
|
- go mod download
|
||
|
- go run gotest.tools/gotestsum@latest -f pkgname-and-test-fails -- -race -shuffle=on ./...
|