pipeline {
  agent any

  stages {
    stage('Checkout') {
      steps {
        echo 'Fetching source code'
      }
    }

    stage('Build') {
      steps {
        echo 'Compiling application'
      }
    }

    stage('Test') {
      steps {
        echo 'Running unit tests'
      }
    }
  }
}
