16 lines
256 B
YAML
16 lines
256 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: build and push image
|
|
image: python:3.10
|
|
commands:
|
|
- pip install -r requirements.txt
|
|
- python manage.py check
|
|
- echo "✅ Build successful"
|
|
|
|
trigger:
|
|
branch:
|
|
- main
|