.drone.yml 231 B

1234567891011121314151617
  1. kind: pipeline
  2. name: default
  3. clone:
  4. disable: true
  5. steps:
  6. - name: clone
  7. image: docker:git
  8. commands:
  9. - git clone https://github.com/octocat/hello-world.git
  10. - name: build
  11. image: golang
  12. commands:
  13. - go build
  14. - go test