summaryrefslogtreecommitdiffstats
path: root/vendor/gomod.garykim.dev/nc-talk/.drone.yml
blob: f2367e4d6c666eec5f38af44dae7b677c1a757c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
kind: pipeline
type: docker
name: test

steps:
  - name: golangci-lint
    image: golangci/golangci-lint:latest-alpine
    commands:
      - golangci-lint run
  - name: test
    image: golang:1.13
    commands:
      - go test ./...
  - name: build-test
    image: golang:1.13
    commands:
      - go build

trigger:
  branch:
    - master
  event:
    - pull_request
    - push