Skip to content
Snippets Groups Projects
Commit 9d559a11 authored by Shubham Choudhary's avatar Shubham Choudhary
Browse files

Add CI/CD pipeline configuration

parent c318bcab
No related branches found
No related tags found
No related merge requests found
Pipeline #72734 failed
stages:
- build
- test
- deploy
build:
stage: build
script:
- echo "Building the project..."
- python train_model.py
test:
stage: test
script:
- echo "Testing the project..."
- jupyter nbconvert --execute --to notebook --inplace test_flask_app_task3.ipynb
- jupyter nbconvert --execute --to notebook --inplace test_flask_app_task4.ipynb
deploy:
stage: deploy
script:
- echo "Deploying the project..."
- # Add your deployment steps here
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment