Add Jenkinsfile

This commit is contained in:
Reza Behzadan 2024-03-31 11:28:54 +03:30
parent b82dac2adb
commit cbf413f468

12
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,12 @@
pipeline {
agent {
docker { image 'golang:1.22.1' }
}
stages {
stage('Test') {
steps {
sh 'make test'
}
}
}
}