Skip to content

Commit 83af36d

Browse files
committed
- [+] add .travis.yml with dummy test
1 parent a5af244 commit 83af36d

2 files changed

Lines changed: 12 additions & 0 deletions

File tree

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# -*- yaml -*-
2+
3+
language: go

main_test.go

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package main_test
2+
3+
import (
4+
"testing"
5+
)
6+
7+
func TestNothing(t *testing.T) {
8+
t.Logf("Dummy test passed")
9+
}

0 commit comments

Comments
 (0)