Add .drone-ci file
All checks were successful
continuous-integration/drone/push Build is passing

Ref #1

Add the configuration file for the CI
This commit is contained in:
Melora Hugues 2023-01-05 19:01:53 +01:00
parent bd9bba54ba
commit 56f909d229

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