ci: add acceptance test

This commit is contained in:
2019-09-20 00:23:56 +02:00
parent d4e8f34b0f
commit f707ddcf23
11 changed files with 225 additions and 70 deletions

View File

@@ -1,4 +1,5 @@
package main
import (
"fmt"
"math/rand"
@@ -9,4 +10,9 @@ func main() {
rand.Seed(time.Now().UTC().UnixNano())
fmt.Print("hello")
for {
fmt.Println("Infinite Loop 1")
time.Sleep(time.Second)
}
}