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.

13 lines
179 B

  1. pipeline:
  2. test:
  3. image: golang:${GO_VERSION}
  4. commands:
  5. - go test ./... -v
  6. matrix:
  7. GO_VERSION:
  8. - latest
  9. - "1.10"
  10. - "1.9"
  11. - "1.8"
  12. - "1.7"
  13. - "1.6"