Skip to content

Latest commit

 

History

History
23 lines (21 loc) · 456 Bytes

File metadata and controls

23 lines (21 loc) · 456 Bytes

version: 0.2

phases: install: runtime-versions: python: 3.x pre_build: commands: - echo "Starting pre-build phase" - python --version build: commands: - echo "Installing dependencies" - pip install -r requirements.txt - echo "Dependencies installed successfully" - ls -la # List files for verification post_build: commands: - echo "Build completed"

artifacts: files: - '**/*'