Update .gitlab-ci.yml file

This commit is contained in:
Slava
2023-08-26 19:06:16 +00:00
parent 92de93faa3
commit 8125063267

View File

@@ -19,10 +19,12 @@
stages: # List of stages for jobs, and their order of execution stages: # List of stages for jobs, and their order of execution
- test - test
test-job: # This job runs in the deploy stage. test-job: # This job runs in the deploy stage.
stage: test # It only runs when *both* jobs in the test stage complete successfully. stage: test # It only runs when *both* jobs in the test stage complete successfully.
environment: production environment: production
script: script:
- echo "Translating text..." - echo "Translating text..."
- uname -a - uname -a
- python -v
- echo "Text successfully translated." - echo "Text successfully translated."