aboutsummaryrefslogtreecommitdiffstats
path: root/Jenkinsfile
blob: c74f72adff1ba766c0a9e23141459ae938ddac12 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
pipeline {
    agent any
    stages {
        stage('Test') {
            steps {
                sh 'bundle exec rake test'
            }
        }
    }
}