Browse Source

Add Jenkinsfile.

Harry de Boer 9 năm trước cách đây
mục cha
commit
93629d2934
1 tập tin đã thay đổi với 8 bổ sung0 xóa
  1. 8 0
      Jenkinsfile

+ 8 - 0
Jenkinsfile

@@ -0,0 +1,8 @@
+node {
+    stage('Build') {
+        sh 'go build'
+    }
+    stage('Test') {
+        sh 'go test'
+    }
+}