aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTong Sun <[email protected]>2020-07-26 18:54:01 -0400
committerTong Sun <[email protected]>2020-07-26 18:54:01 -0400
commit83af36d65c73af5934d7dfe5a27d51545a237ac2 (patch)
tree8b5a1312617accd8665ae23a024be3736878ea99
parent- [+] pkg md plugin handling functionality implemented (diff)
downloadhtml2md-83af36d65c73af5934d7dfe5a27d51545a237ac2.tar.xz
html2md-83af36d65c73af5934d7dfe5a27d51545a237ac2.zip
- [+] add .travis.yml with dummy test
-rw-r--r--.travis.yml3
-rw-r--r--main_test.go9
2 files changed, 12 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..cefd2a3
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,3 @@
+# -*- yaml -*-
+
+language: go
diff --git a/main_test.go b/main_test.go
new file mode 100644
index 0000000..1504011
--- /dev/null
+++ b/main_test.go
@@ -0,0 +1,9 @@
+package main_test
+
+import (
+ "testing"
+)
+
+func TestNothing(t *testing.T) {
+ t.Logf("Dummy test passed")
+}