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.

22 lines
292 B

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. image: golang:${GO_VERSION}
  10. commands:
  11. - go mod download
  12. - go test ./... -v
  13. - go test -bench ./...
  14. matrix:
  15. GO_VERSION:
  16. - "1.11"
  17. - "1.12"
  18. - "1.13"
  19. - "1.14"