Compare commits

...

1 commit

Author SHA1 Message Date
56f909d229 Add .drone-ci file
All checks were successful
continuous-integration/drone/push Build is passing
Ref #1

Add the configuration file for the CI
2023-01-05 19:04:58 +01:00

16
.drone.yml Normal file
View file

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