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

4 years ago
4 years ago
  1. name: irc
  2. kind: pipeline
  3. type: exec
  4. workspace:
  5. base: /project
  6. path: irc/
  7. pipeline:
  8. test:
  9. name: test-go-${GO_VERSION}
  10. image: golang:${GO_VERSION}
  11. commands:
  12. - go mod download
  13. - go test ./... -v
  14. - go test -bench ./...
  15. matrix:
  16. GO_VERSION:
  17. - "1.11"
  18. - "1.12"
  19. - "1.13"
  20. - "1.14"