Add drone file
parent
41e31f763b
commit
e990b0fa76
@ -0,0 +1,18 @@
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: CI Test Pipeline
|
||||
|
||||
steps:
|
||||
- name: Unit Tests
|
||||
image: golang:1.23
|
||||
commands:
|
||||
- go test -v ./...
|
||||
|
||||
trigger:
|
||||
event:
|
||||
- pull_request
|
||||
- push
|
||||
|
||||
# Secrets used to pull private images
|
||||
image_pull_secrets:
|
||||
- dockerconfigjson
|
Loading…
Reference in New Issue