Files
hellodrone/.drone.yml
flyskype 55a0f68011
All checks were successful
continuous-integration/drone/push Build is passing
更新 '.drone.yml'
2023-10-04 21:33:20 +08:00

25 lines
317 B
YAML

kind: pipeline
type: docker
name: hello-drone
platform:
os: linux
arch: amd64
clone:
disable: true
steps:
- name: clone
image: alpine/git
commands:
- git clone $DRONE_REMOTE_URL .
- name: echo hello world
image: golang:alpine
commands:
- go build
- go test
- echo hello world