Explorar o código

Add Jenkinsfile.

Harry de Boer %!s(int64=9) %!d(string=hai) anos
pai
achega
93629d2934
Modificáronse 1 ficheiros con 8 adicións e 0 borrados
  1. 8 0
      Jenkinsfile

+ 8 - 0
Jenkinsfile

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