version: "1"
pipelines:
  - name: template:0.1.0
    description: this is a pipeline
    jobs:
      - name: step-1
        description: the first step
        sdk: "2"
        packages:
          - git
        steps:
          - git clone https://github.com/cto-ai/sdk-python /tmp/state/sdk-python
      - name: passing-step-2
        description: step 2
        sdk: "2"
        packages:
          - python3
          - python3-pip
        steps:
          - pip install mypy
          - mypy /tmp/state/sdk-python/cto_ai/*.py
