瀏覽代碼

initial drone CI config

main
John Robinson 1 年之前
父節點
當前提交
0471c808c3
共有 1 個文件被更改,包括 24 次插入0 次删除
  1. +24
    -0
      .drone.yml

+ 24
- 0
.drone.yml 查看文件

@@ -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: {}

Loading…
取消
儲存