-
Notifications
You must be signed in to change notification settings - Fork 3
59 lines (51 loc) · 1.09 KB
/
.drone.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
---
kind: pipeline
type: docker
name: go-1-18-test
steps:
- name: test
image: golang:1.18
commands:
- go test ./...
- name: build-failed-notification
image: curlimages/curl:8.00.1
environment:
notify:
from_secret: notification_webhook
when:
status:
- failure
commands:
- "curl -v $notify -F 'title=Build Failed: ${DRONE_REPO}' -F $'message=[Build Failed] ${DRONE_REPO}\n[COMMIT] ${DRONE_COMMIT}\n[BRANCH] ${DRONE_BRANCH}\n'"
---
kind: pipeline
type: docker
name: go-1-19
volumes:
- name: deps
temp: {}
steps:
- name: test
image: golang:1.19
volumes:
- name: deps
path: /go
commands:
- go test ./...
- name: go-cover
image: golang:1.19
volumes:
- name: deps
path: /go
commands:
- go test ./... -coverpkg=./... -coverprofile ./coverage.out
- go tool cover -func ./coverage.out
---
kind: pipeline
type: docker
name: osv-dependency-scan
steps:
- name: osv-vuln-dep-scanner
image: ghcr.io/google/osv-scanner:latest
commands:
- /osv-scanner -r ./