### SourceCraft CI/CD Pipeline Configuration Source: https://context7.com/sourcecraft/template-python.git/llms.txt This YAML file defines the automated workflow for building and testing the Python application on the SourceCraft platform. It specifies when the workflow should run, the environment, and the scripts to execute for dependency installation and application setup. ```yaml # .sourcecraft/ci.yaml - Конфигурация пайплайна on: push: - workflows: [sample-workflow] filter: branches: ["master", "main"] workflows: sample-workflow: runs_on: serverless tasks: - name: sample-task cubes: - name: sample-cube1 image: cr.yandex/mirror/library/python:3.14.3-slim script: - python -m pip install --upgrade pip - if [ -f requirements.txt ]; then pip install -r requirements.txt; fi ``` -------------------------------- ### Run Python Application Source: https://context7.com/sourcecraft/template-python.git/llms.txt This snippet shows how to execute the main Python script. It's the entry point of the application and prints a greeting message. No external dependencies are required for this basic execution. ```python # main.py - Запуск приложения python main.py # Вывод: Hello SourceCraft ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.