mirror of
https://git.klmp200.net/ALFRED/ALFRED.git
synced 2025-04-27 13:20:37 +02:00
Basic test architecture
This commit is contained in:
parent
9f1f5f527f
commit
2c34fbefe2
2 changed files with 15 additions and 0 deletions
|
@ -4,6 +4,13 @@ pipeline:
|
||||||
commands:
|
commands:
|
||||||
- go get -v -d ./...
|
- go get -v -d ./...
|
||||||
- go build .
|
- go build .
|
||||||
|
test:
|
||||||
|
image: golang
|
||||||
|
secrets: [ test_api_token ]
|
||||||
|
environment: [ test_api_token ]
|
||||||
|
commands:
|
||||||
|
- go get -v -d ./...
|
||||||
|
- go test ./...
|
||||||
publish:
|
publish:
|
||||||
image: plugins/docker
|
image: plugins/docker
|
||||||
repo: klmp200/alfred
|
repo: klmp200/alfred
|
||||||
|
|
8
alfred_test.go
Normal file
8
alfred_test.go
Normal 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
|
Loading…
Add table
Reference in a new issue