Explorar el Código

initial drone CI config

main
John Robinson hace 1 año
padre
commit
0471c808c3
Se han modificado 1 ficheros con 24 adiciones y 0 borrados
  1. +24
    -0
      .drone.yml

+ 24
- 0
.drone.yml Ver fichero

@@ -0,0 +1,24 @@
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: {}

Cargando…
Cancelar
Guardar