15 lines
194 B
YAML
15 lines
194 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: build
|
|
|
|
steps:
|
|
- name: test
|
|
image: golang:1.21.1
|
|
commands:
|
|
- go test -v -race -skip '^TestE2E|TestMain' ./...
|
|
|
|
trigger:
|
|
event:
|
|
- push
|
|
- pull_request
|