core/.drone.yml
mahdi e3e0638c18
All checks were successful
continuous-integration/drone/push Build is passing
devops - drone test
2023-12-12 23:59:18 +01:00

30 lines
360 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: greeting
image: alpine
commands:
- echo hello
- echo world
- 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: {}