Add Jenkinsfile
This commit is contained in:
parent
b82dac2adb
commit
cbf413f468
12
Jenkinsfile
vendored
Normal file
12
Jenkinsfile
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
pipeline {
|
||||
agent {
|
||||
docker { image 'golang:1.22.1' }
|
||||
}
|
||||
stages {
|
||||
stage('Test') {
|
||||
steps {
|
||||
sh 'make test'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user