added drone build config
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Tessa Nordgren 2021-03-12 18:50:19 -08:00
parent eec07955cc
commit 8e9334fe3c
3 changed files with 23 additions and 0 deletions

11
.drone.yml Normal file
View File

@ -0,0 +1,11 @@
---
kind: pipeline
name: default
steps:
- name: build, test and benchmark
image: golang
commands:
- go test
- go test -bench=.
- go build

8
go.mod Normal file
View File

@ -0,0 +1,8 @@
module git.sudo.ca/tessa/ntree
go 1.16
require (
github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect
)

4
go.sum Normal file
View File

@ -0,0 +1,4 @@
github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548 h1:iwZdTE0PVqJCos1vaoKsclOGD3ADKpshg3SRtYBbwso=
github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548/go.mod h1:e6NPNENfs9mPDVNRekM7lKScauxd5kXTr1Mfyig6TDM=
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 h1:OdAsTTz6OkFY5QxjkYwrChwuRruF69c169dPK26NUlk=
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo=