@Library('ci-shared-lib') _
pipeline {
  agent any
  stages {
    stage('Test') {
      steps {
        runTests()
      }
    }
  }
}
