diff --git a/test.yml b/test.yml new file mode 100644 index 0000000..61c0979 --- /dev/null +++ b/test.yml @@ -0,0 +1,13 @@ +image: python:3.10 + +predeploy: + stage: deploy + script: + - 'pip3 install requests' + +deploy: + stage: deploy + needs: + - predeploy + script: + - 'python3 main.py'