소스 검색

Add Jenkinsfile.

Harry de Boer 9 년 전
부모
커밋
93629d2934
1개의 변경된 파일8개의 추가작업 그리고 0개의 파일을 삭제
  1. 8 0
      Jenkinsfile

+ 8 - 0
Jenkinsfile

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