aboutsummaryrefslogtreecommitdiffstats
path: root/.drone.yml
blob: 0065a03d014d9a5f4557722b52c7a4a3d2b2c367 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
kind: pipeline
name: default

steps:
  - name: build
    image: golang:latest
    commands:
      - make test

  - name: coverage
    image: plugins/codecov
    settings:
      token:
        from_secret: codecov-token

  - name: notify
    image: plugins/webhook
    urls: https://msgbus.mills.io/ci.mills.io
    when:
      status:
        - success
        - failure