Add ci/cd

pull/3/head
Toni Melisma 4 years ago
parent 02c850ed1a
commit f6910d0ba8

4
.gitignore vendored

@ -14,4 +14,6 @@
# Dependency directories (remove the comment below to include it)
vendor/
.env
.env
bin/

@ -0,0 +1,4 @@
language: go
go:
- 1.15.2

@ -0,0 +1,13 @@
all: deps test build
deps:
go get ./...
test:
go test -v ./...
build:
go build -o bin/fastgallery cmd/fastgallery/main.go
clean:
rm bin/fastgallery
Loading…
Cancel
Save