Compare commits

...

2 Commits

Author SHA1 Message Date
169fbf9bc6 Use more memory to build
Some checks reported errors
continuous-integration/drone/push Build was killed
2020-05-24 23:33:05 -07:00
445d041eae Add a test file 2020-05-24 23:25:38 -07:00
2 changed files with 8 additions and 1 deletions

View File

@ -11,7 +11,7 @@ steps:
resources: resources:
limits: limits:
cpu: 1 cpu: 1
memory: 100MiB memory: 200MiB
requests: requests:
cpu: 1 cpu: 1
memory: 50MiB memory: 50MiB

7
main_test.go Normal file
View File

@ -0,0 +1,7 @@
package main
import "testing"
func TestMain(t *testing.T) {
t.Log("it's all okay")
}