Explorar el Código

Add Jenkinsfile.

Harry de Boer hace 9 años
padre
commit
93629d2934
Se han modificado 1 ficheros con 8 adiciones y 0 borrados
  1. 8 0
      Jenkinsfile

+ 8 - 0
Jenkinsfile

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