commit e637e9919216aa69273f4850f97671c7a9c6469a Author: giaogiao Date: Tue Sep 12 09:26:11 2023 +0800 first commit diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..564a1a0 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,25 @@ +kind: pipeline +type: docker +name: default + +steps: +- name: test + image: alpine + volumes: + - name: cache + path: /go + commands: + - ls / + +- name: build + image: alpine + volumes: + - name: cache + path: /go + commands: + - ls / + +volumes: +- name: cache + temp: {} + \ No newline at end of file