Drone integration and Go module setup
parent
ad3b660c87
commit
53412182e7
@ -0,0 +1,15 @@
|
||||
kind: pipeline
|
||||
name: Build
|
||||
steps:
|
||||
- name: Build
|
||||
image: golang:1.12
|
||||
commands:
|
||||
- go build .
|
||||
- name: Unit Tests
|
||||
image: golang:1.12
|
||||
commands:
|
||||
- go test -tag=unit .
|
||||
- name: Integration Tests
|
||||
image: golang:1.12
|
||||
commands:
|
||||
- go test -tag=integration .
|
@ -0,0 +1,3 @@
|
||||
module gitea.teamortix.com/Team-Ortix/JISQueueing
|
||||
|
||||
go 1.12
|
Reference in New Issue