Mirror of github.com/gissleh/irc
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
324 B

name: irc
kind: pipeline
type: exec
workspace:
base: /project
path: irc/
pipeline:
test:
name: test-go-${GO_VERSION}
image: golang:${GO_VERSION}
commands:
- go mod download
- go test ./... -v
- go test -bench ./...
matrix:
GO_VERSION:
- "1.11"
- "1.12"
- "1.13"
- "1.14"