summaryrefslogtreecommitdiffstats
path: root/vendor/gitlab.com/golang-commonmark/linkify/.gitlab-ci.yml
blob: 5e4d0bf20d6e514547dab7cc1daa398630d45036 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
image: golang:1.13

stages:
  - build
  - test

before_script:
  - go get golang.org/x/text/unicode/rangetable

build:
  stage: build
  script:
    - go build ./...

test:
  stage: test
  script:
    - test -z "$(gofmt -l . | tee /dev/stderr)"
    - go test ./...