소스 검색

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…
취소
저장