Compare commits

...

1 commit

Author SHA1 Message Date
feb71a9396 Add .drone-ci file
Ref 

Add the configuration file for the CI
2023-01-05 19:02:38 +01:00

16
.drone.yml Normal file
View file

@ -0,0 +1,16 @@
kind: pipeline
type: docker
name: default
steps:
- name: test
image: golang
commands:
- cd tracker
- make build
- make test
trigger:
event:
- push
- tag