浏览代码

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

正在加载...
取消
保存