diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..168c4d32ed4041e71c88f4454678d67c2654d668 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,24 @@ +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 +