Basic test architecture
the build was successful Details

This commit is contained in:
Antoine Bartuccio 2018-07-23 17:52:29 +02:00
parent 9f1f5f527f
commit 2c34fbefe2
Signed by: klmp200
GPG Key ID: E7245548C53F904B
2 changed files with 15 additions and 0 deletions

View File

@ -4,6 +4,13 @@ pipeline:
commands:
- go get -v -d ./...
- go build .
test:
image: golang
secrets: [ test_api_token ]
environment: [ test_api_token ]
commands:
- go get -v -d ./...
- go test ./...
publish:
image: plugins/docker
repo: klmp200/alfred

8
alfred_test.go Normal file
View File

@ -0,0 +1,8 @@
/*
* @Author: Bartuccio Antoine
* @Date: 2018-07-23 17:48:18
* @Last Modified by: klmp200
* @Last Modified time: 2018-07-23 17:48:22
*/
package main