Browse Source

initial drone CI config

main
John Robinson 1 year ago
parent
commit
0471c808c3
1 changed files with 24 additions and 0 deletions
  1. +24
    -0
      .drone.yml

+ 24
- 0
.drone.yml View File

kind: pipeline
name: default
type: docker

steps:
- name: test
image: golang
volumes:
- name: deps
path: /go
commands:
- go test

- name: build
image: golang
volumes:
- name: deps
path: /go
commands:
- go build

volumes:
- name: deps
temp: {}

Loading…
Cancel
Save