|
@ -1,3 +1,7 @@ |
|
|
|
|
|
name: irc |
|
|
|
|
|
kind: pipeline |
|
|
|
|
|
type: exec |
|
|
|
|
|
|
|
|
workspace: |
|
|
workspace: |
|
|
base: /go |
|
|
base: /go |
|
|
path: src/github.com/gissleh/irc |
|
|
path: src/github.com/gissleh/irc |
|
@ -6,12 +10,13 @@ pipeline: |
|
|
test: |
|
|
test: |
|
|
image: golang:${GO_VERSION} |
|
|
image: golang:${GO_VERSION} |
|
|
commands: |
|
|
commands: |
|
|
|
|
|
- go mod download |
|
|
- go test ./... -v |
|
|
- go test ./... -v |
|
|
- go test -bench ./... |
|
|
- go test -bench ./... |
|
|
|
|
|
|
|
|
matrix: |
|
|
matrix: |
|
|
GO_VERSION: |
|
|
GO_VERSION: |
|
|
- "1.11" |
|
|
- "1.11" |
|
|
- "1.10" |
|
|
|
|
|
- "1.9" |
|
|
|
|
|
- "1.8" |
|
|
|
|
|
|
|
|
- "1.12" |
|
|
|
|
|
- "1.13" |
|
|
|
|
|
- "1.14" |