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.

17 lines
246 B

  1. workspace:
  2. base: /go
  3. path: src/github.com/gissleh/irc
  4. pipeline:
  5. test:
  6. image: golang:${GO_VERSION}
  7. commands:
  8. - go test ./... -v
  9. - go test -bench ./...
  10. matrix:
  11. GO_VERSION:
  12. - "1.11"
  13. - "1.10"
  14. - "1.9"
  15. - "1.8"