Przeglądaj źródła

Add Jenkinsfile.

Harry de Boer 9 lat temu
rodzic
commit
93629d2934
1 zmienionych plików z 8 dodań i 0 usunięć
  1. 8 0
      Jenkinsfile

+ 8 - 0
Jenkinsfile

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